Skip to content

Instantly share code, notes, and snippets.

View BlaiseGratton's full-sized avatar

Blaise Gratton BlaiseGratton

  • Givful
  • Nashville, TN
View GitHub Profile

Write a query to display all records in the orders table

SELECT * FROM orders;

Show me the employees whose name starts with A.

SELECT * FROM employees WHERE first_name ILIKE 'A%';

Show me the employees whose first name starts with A or last name ends with N.