actually i have completed Learn Bash by Building a Boilerplate yesterday but today when i gone to do another task Learn Relational Databases by Building a Mario Database then i facing some login issue because yesterday i have write some command i was gave psql --username=freecodecamp --dbname=postgres this one but right now i do not understand how to connect which command i write on terminal
Hi M,
I just started ‘Learning Relational DB’ too and I have found a couple of hints.
- When you use the online VSCode to write your scripts(answers) you need to remember to SAVE Everything and Git Add and Git Push (Ont the left of the VSCode) your work. Otherwise, you may lose it.
I learned the hard way, too.!
Best of Luck!
This is the correct command to use to login to psql for all of the Relational Database courses.
You then connect to whichever database you are using with the command:
\c database_name;