Skip to content
Snippets Groups Projects
Commit bdc7734b authored by Sorrel Harriet's avatar Sorrel Harriet
Browse files

Commenting practice_queries.sql

parent 2295787d
Branches master
No related merge requests found
/* Simple query
Fetch first_name and last_name columns from artist table */
SELECT first_name, last_name FROM artist;
/* Query with filters
Fetches titles from record table where year is 1973 and genre is Reggae */
SELECT title FROM record
WHERE year = 1973
AND genre = "Reggae";
AND genre = "Reggae";
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment