PostgreSQL - PL/pgSQL Fundamentals
Consider this PostgreSQL query run on a server:
What will be the output of the SELECT query?
INSERT INTO users (id, name) VALUES (1, 'Alice');
INSERT INTO users (id, name) VALUES (2, 'Bob');
SELECT * FROM users ORDER BY id;
What will be the output of the SELECT query?
