web-dev-qa-db-ja.com

Oracle 00932. 00000-「一貫性のないデータ型:予期された%sが%sを取得しました」

さて、私はまだOracleの初心者です、私はサブクエリでテーブルをクエリしようとしています..それはこのように見えます

select id_user, count(*) as jumlah from (select * from users where username = 'usr' and pass = 'pwd' and company_id = 'PAN' and status = 1) 
group by id_user;

上記のコードは機能します。しかし、ストアドプロシージャ内に配置しようとすると、次のようなエラーが発生しました。

これがストアドプロシージャです

create type login_obj is object(jumlah integer);
create type login_table is table of login_obj;
create or replace function startLogin(u varchar, p varchar, cid varchar)
return login_table
is
  tabel login_table := login_table();
  the_count integer;
  the_sql varchar(200);
begin
  the_sql := 'select id_user, count(*) as jumlah from (select * from users where username = ''' || u || ''' and pass = ''' || p || ''' and company_id = ''' || cid || ''' and status = 1) GROUP BY id_user';
  execute immediate the_sql into the_count;

  if the_count IS NOT NULL
  then
  begin
    tabel.extend;
    tabel(1) := login_obj(the_count);
  end;
  end if;
  return tabel;
end;

次にそれを実行する

select * from table (startLogin('usr','pwd','PAN'));

そしてここにエラーがあります

SQL Error: ORA-00932: inconsistent datatypes: expected - got -
ORA-06512: at "LUKI.STARTLOGIN", line 14
00932. 00000 -  "inconsistent datatypes: expected %s got %s"

何か案が?

3
thekucays

線の下にもう1つの変数を追加します

the_sql varchar(200);

なので

yid_user users.id_user%TYPE;

すぐに実行を変更します

execute immediate the_sql into yid_user, the_count;

Oracleで変数型を使用するためのヒント:

1. VARCHAR is obsolete, use VARCHAR2 instead.
2. Instead of using INTEGER type, use NUMBER.
3
Orcun Yucel

クエリは2列を返しますが、INTOで定義されている列は1つだけです。

1
dnoeth

私はすでにそれを理解しました..user4884704に感謝します(私はすでに彼の答えをマークしました)

これが作業コードです。結果を別の変数に入れます

create type login_obj is object(id_user integer, jumlah integer);
create type login_table is table of login_obj;
create or replace function startLogin(u varchar, p varchar, cid varchar)
return login_table
is
  tabel login_table := login_table();
  id_user integer;
  the_count integer;
  the_sql varchar(200);
begin
  the_sql := 'select id_user, count(*) as jumlah from (select * from users where username = ''' || u || ''' and pass = ''' || p || ''' and company_id = ''' || cid || ''' and status = 1) GROUP BY id_user';
  execute immediate the_sql into id_user, the_count;

  if the_count IS NOT NULL
  then
  begin
    tabel.extend;
    tabel(1) := login_obj(id_user, the_count);
  end;
  end if;
  return tabel;
end;

それから私はそれを実行します

select * from table (startLogin('usr','pwd','PAN')); 
0
thekucays