A sequence has the following definition: CREATE SEQUENCE seq1 CACHE 10 CYCLE; Select the value that is returned by executing the following SQL. SELECT nextval('seq1');
I think the correct answer is B) 1. The CACHE 10 parameter means that the sequence will pre-allocate 10 values, so the first call to nextval() should return 1.
Lacresha
1 days agoJulene
13 days agoJeanice
14 days agoJulene
15 days ago