Anything in blue is upper case SELECT
, DELETE
, GO
, etc
Table names are singular like the table that holds our customers would be the customer table
Linking tables are tablename_to_tablename
use _
between works in table names and parameters
example
BEGIN
SELECT
Company.ID AS Company_ID,
Company.Client_Name,
Company.Website,
Office.Office_Name
FROM
Company_Office WITH(NOLOCK)
INNER JOIN Company WITH(NOLOCK) ON Company_Office.Company_ID = Company.ID
WHERE
END