Complete the code to create a new database named 'school'.
CREATE DATABASE [1];The command CREATE DATABASE school; creates a new database named 'school'.
Complete the command to connect to the database named 'school'.
\c [1]The command \c school connects you to the 'school' database.
Fix the error in the command to create a database named 'school'.
CREATE [1] school;The correct keyword to create a database is DATABASE. Using CREATE DATABASE school; creates the database.
Fill both blanks to connect to the database 'school' as user 'admin'.
psql -U [1] -d [2]
The command psql -U admin -d school connects to the 'school' database as user 'admin'.
Fill both blanks to create a database named 'school', connect to it, and then list all tables.
CREATE [1] school; \c [2] \dt
First, create the database with CREATE DATABASE school;. Then connect using \c school. Finally, list tables with \dt.