Difference between revisions of "Plsql sequence"

From John Freier
Jump to: navigation, search
(Created page with 'To get the next sequence SELECT SELECT myseq.NEXTVAL FROM DUAL;')
 
 
Line 1: Line 1:
 
To get the next sequence
 
To get the next sequence
  
  SELECT SELECT myseq.NEXTVAL FROM DUAL;
+
  SELECT myseq.NEXTVAL FROM DUAL;

Latest revision as of 11:28, 15 July 2013

To get the next sequence

SELECT myseq.NEXTVAL FROM DUAL;