You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
select * from t_table;
select id, name from t_table;
select * from t_table where id > 3;
select * from t_table where id = 3;
select * from t_table where id = 3 and name = "nail";
select * from t_table where id = 3 limit 3;