dblabs2/scripts/003.sql

14 lines
340 B
MySQL
Raw Normal View History

2024-02-02 07:27:13 +01:00
-- 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;