Skip to content

Commit efafac1

Browse files
committed
sql started
1 parent 1cf2c6e commit efafac1

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

new.sql

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
-- users uchun commandalar vazifa sifatida
2+
-- 1
3+
select * from users where gender='Male'
4+
-- 2
5+
select * from users having length(first_name)+length(last_name)>10;
6+
-- 3
7+
select * from users where first_name like "%a%";
8+
-- 4
9+
select * from users where gender='Male' limit 10;
10+
-- 5
11+
select (select count(gender) from users where gender = 'Female') as ayol_userlar_soni;

0 commit comments

Comments
 (0)