PostgreSQL udemy studies cheatsheet - dishplate/blog GitHub Wiki
Select all from the actors table
SELECT * FROM actors;
Delete the actors table
DROP TABLE actors;
Select all from the actors table
SELECT * FROM actors;
Delete the actors table
DROP TABLE actors;