04_條件控制語句

--其中引用變量時 '|| ||'  如'||username||'
--在Oracle中 如果碰到單引號裏還要單引號 則需要轉譯 用兩個單引號表示一個單引號
declare
  v_a number;
  v_b number;
  v_c number;

  v_sql varchar2(1000);

  v_username varchar2(10);
  v_password varchar2(10);
begin
  v_a := 5;
  if v_a < 10 then
    dbms_output.put_line('a小於10');
  end if;

  --2層結構
  v_b := 5;
  if v_b < 10 then
    dbms_output.put_line('b小於10');
  else
    dbms_output.put_line('b大於10');
  end if;

  v_c := 25;
  if v_c < 10 then
    dbms_output.put_line('b小於10');
  elsif v_c > 10 and v_c < 20 then
    dbms_output.put_line('b大於10');
  else
    dbms_output.put_line('c大於20');
  end if;

  --SQL語句的拼湊
  v_username := 'a';
  v_password := '123456';

  v_sql := 'Select * From T_Userinfo where 1 = 1';
  if v_username is not null and v_username != ' ' then
    v_sql := v_sql || '     and username like ''%' || v_username ||
             '%''       ';
  end if;
  if v_password is not null and v_password != ' ' then
    v_sql := v_sql || ' and password = ''';
    v_sql := v_sql || v_password;
    v_sql := v_sql || '''';
  
  end if;
  v_sql := v_sql || ' order by userid asc';

  dbms_output.put_line(v_sql);
end;

--Select * From T_Userinfo where 1 = 1     and username like '%a%'        
--and password = '123456' order by userid asc

發佈了91 篇原創文章 · 獲贊 12 · 訪問量 3萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章