Horje
t sql cursor tr Code Example
t sql cursor tr
BEGIN
  DECLARE cur_employee CURSOR FOR
      SELECT Surname
      FROM Employees;
  DECLARE name CHAR(40);
  OPEN cur_employee;
  lp: LOOP
    FETCH NEXT cur_employee INTO name;
    IF SQLCODE <> 0 THEN LEAVE lp END IF;
    ...
  END LOOP;
  CLOSE cur_employee;
END
Source: dcx.sap.com




Sql

Related
insert ip address in mysql Code Example insert ip address in mysql Code Example
oracle job class Code Example oracle job class Code Example
install postgresql 12 on debian 10 Code Example install postgresql 12 on debian 10 Code Example
plsql find location of procedure Code Example plsql find location of procedure Code Example
oracle session statistics Code Example oracle session statistics Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
6