Skip to content

Commit 3c3b026

Browse files
authored
Create 02_03 Selecting and Filtering Data.sql
1 parent 03b5538 commit 3c3b026

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed
+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
select name, price from products;
2+
3+
select * from orders where total_amount>100;
4+
5+
select * from customer where customer_name like 'A%';

0 commit comments

Comments
 (0)