NEXTVAL (Lakehouse v1)
Retrieves the next value from a sequence.
SQL Syntax
Section titled “SQL Syntax”NEXTVAL(<sequence_name>)Return Type
Section titled “Return Type”Integer.
SQL Examples
Section titled “SQL Examples”This example demonstrates how the NEXTVAL function works with a sequence:
CREATE SEQUENCE my_seq;
SELECT NEXTVAL(my_seq), NEXTVAL(my_seq), NEXTVAL(my_seq);
┌─────────────────────────────────────────────────────┐│ nextval(my_seq) │ nextval(my_seq) │ nextval(my_seq) │├─────────────────┼─────────────────┼─────────────────┤│ 1 │ 2 │ 3 │└─────────────────────────────────────────────────────┘This example showcases how sequences and the NEXTVAL function are employed to automatically generate and assign unique identifiers to rows in a table.
-- Create a new sequence named staff_id_seqCREATE SEQUENCE staff_id_seq;
-- Create a new table named staff with columns for staff_id, name, and departmentCREATE TABLE staff ( staff_id INT, name VARCHAR(50), department VARCHAR(50));
-- Insert a new row into the staff table, using the next value from the staff_id_seq sequence for the staff_id columnINSERT INTO staff (staff_id, name, department)VALUES (NEXTVAL(staff_id_seq), 'John Doe', 'HR');
-- Insert another row into the staff table, using the next value from the staff_id_seq sequence for the staff_id columnINSERT INTO staff (staff_id, name, department)VALUES (NEXTVAL(staff_id_seq), 'Jane Smith', 'Finance');
SELECT * FROM staff;
┌───────────────────────────────────────────────────────┐│ staff_id │ name │ department │├─────────────────┼──────────────────┼──────────────────┤│ 2 │ Jane Smith │ Finance ││ 1 │ John Doe │ HR │└───────────────────────────────────────────────────────┘