SQL Syntax Rules - Suja-dot/Database GitHub Wiki
Multiple Queries
- SQL allows to run multiple queries or commands at the same time
SELECT FirstName FROM customers;
SELECT city FROM customers;
Case Sensitivity
- SQL is case insensitive. below statements are equivalent and will produce the same result (but, Command normally using upper case)
select City from customers;
SELECT City FROM customers;
sElEct City From customers;