9
9
insert into t1 values(1);
16
16
select count(test.t1.b) from t1;
18
18
select count(not_existing_database.t1) from t1;
20
20
select count(not_existing_database.t1.a) from t1;
22
22
select count(not_existing_database.t1.a) from not_existing_database.t1;
24
24
select 1 from t1 order by 2;
26
26
select 1 from t1 group by 2;
28
28
select 1 from t1 order by t1.b;
30
30
select count(*),b from t1;