dblabs2/scripts/003.sql
2024-02-02 07:27:13 +01:00

14 lines
No EOL
340 B
SQL

-- Select everything from the Users table
SELECT * FROM Users;
-- Select everything from the Theaters table
SELECT * FROM Theaters;
-- Select everything from the Movies table
SELECT * FROM Movies;
-- Select everything from the Shows table
SELECT * FROM Shows;
-- Select everything from the Reservations table
SELECT * FROM Reservations;