14 lines
No EOL
340 B
SQL
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; |