SQL Essential Training (2019)
Linkedin Learning By Bill Weinman Installation SQL database manager Using SQLite Studio v3.2.1 Text editor BBEdit for Mac Notepad++ for Windows SQL Overview SQL is a standard query language for relational databases. The main operations on a database are Create, Read, Update, and Delete (CRUD). -- SQL statement SELECT * FROM Countries WHERE Continent = 'Europe'; SQL is made up of statements. Each statement contains one or more clauses. A clause starts with a keyword like SELECT followed by an argument or expression. Statements are terminated by semicolons. Semicolons are optional, but it’s considered good practice to use them. ...