We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1cf2c6e commit efafac1Copy full SHA for efafac1
new.sql
@@ -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