How do you change the maximum value of a sequence in Oracle?
- Abigail
- 1
Best Answer:
SELECT MAX(sequence_no)
FROM sequence;
The MAX() function returns the maximum value in a sequence.
what is the maximum value of MAXVALUE in sequence in oracle - SQL
Accepted 00 Votes