Breaking News
Loading...
10/02/2014

Vòng lặp trong Oracle

Trong Oracle, dùng vòng lặp để xử lý từng dòng trong một tập dữ liệu rất đơn giản, tương tự như Cursor trong SQL Server

Ví dụ:

BEGIN
  FOR i IN (SELECT ACCOUNT_LIST_ID FROM ACCOUNT_LIST) LOOP
  dbms_output.put_line('The title is ['||i.ACCOUNT_LIST_ID||']');
  END LOOP;
END;

0 comments:

Post a Comment

 
Toggle Footer