14 lines
340 B
MySQL
14 lines
340 B
MySQL
![]() |
-- 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;
|