February 2018
Beginner to intermediate
364 pages
10h 32m
English
First make sure you have access to a PostgreSQL data instance. Again, you can install one locally, run one in a container, or get an instance in the cloud.
As with MySQL, we need to first create a database. The process is almost identical to that of MySQL but with slightly different commands and parameters.
# psql -U postgrespsql (9.6.4)Type "help" for help.postgres=#
postgres=# create database scraping;CREATE DATABASEpostgres=#
postgres=# \connect scrapingYou are now connected to database "scraping" as user "postgres".scraping=#
Read now
Unlock full access