Skip to content

Commit 8ab7ba6

Browse files
authored
Create hallux.sql
1 parent 891d2b2 commit 8ab7ba6

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

hallux.sql

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
SELECT * FROM Song
2+
WHERE Song_Name LIKE 'vivacious%';
3+
4+
SELECT * FROM Customer
5+
WHERE Zip_Code = '78582';
6+
7+
SELECT * FROM Customer
8+
WHERE Zip_Code = '78582'
9+
ORDER BY First_Name DESC;
10+
11+
SELECT * FROM Band
12+
-- automatic conversion works on some platforms
13+
--WHERE Formation_Date > 'September 2006';
14+
-- explicit datatype matching works everywhere
15+
WHERE Formation_Date > '2006-09-01 00:00:00.000';

0 commit comments

Comments
 (0)