Skip to content

Commit 588beb5

Browse files
committed
restructure folder
1 parent 4b04d39 commit 588beb5

10 files changed

+16
-2
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
/*How many books are in the database???!*/
2+
SELECT COUNT(*) FROM books;
3+
4+
/*How many author_fnames?*/
5+
SELECT COUNT(DISTINCT(author_fname))
6+
FROM books;
7+
8+
/*How many author_lfnames?*/
9+
SELECT COUNT(DISTINCT(author_lname))
10+
FROM books;
11+
12+
/*How many titles contain "the"?*/
13+
SELECT COUNT(*) FROM books
14+
WHERE title LIKE '%the%'

readme.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# MySQL Notes & Exercises
2-
just mysql notes and exercises.
2+
just MySQL notes and exercises.
33

44
## Exercises
5-
exercises are from challenges from Udemy course **The Ultimate MySQL Bootcamp: Go from SQL Beginner to Expert**
5+
Ultimate MySQL : exercises are from challenges from Udemy course **The Ultimate MySQL Bootcamp: Go from SQL Beginner to Expert**

0 commit comments

Comments
 (0)