比如:有一个user表,直接select会报错
select * from user;
正确语法如下:
select * from [user];
select * from (select * from [user])as a;