18
18
select count(not_existing_database.t1) from t1;
19
19
--error ER_BAD_FIELD_ERROR
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;
23
23
--error ER_BAD_FIELD_ERROR
24
24
select 1 from t1 order by 2;