I've picked up a basic
SQL book from Amazon to help me understand ANSI SQL. The book has a site where I'm suggested to download a sample database so that I may follow along and execute the explained lessons on. My problem is after I create the database:
Code:
CREATE DATABASE tysql OWNER carlos;
CREATE DATABASE
COMMENT ON DATABASE tysql IS 'Teach Yourself SQL';
COMMENT
Now I've downloaded the ZIP archive and extracted two files I've attached below which were specified for my particular RDBMS (PostgreSQL) that I'm using. My question is how to use the two files to CREATE my tables and INSERT my row data?