select*from (select user ())a
中的 a 是啥意义?
select*from (select table_name from information_schema.tables where table_schema=database () limit 0,1 )
像这样 mysql 里执行是报错的。
select*from (select table_name from information_schema.tables where table_schema=database () limit 0,1 )a 就可以成功执行,为什么呢?
中的 a 是啥意义?
select*from (select table_name from information_schema.tables where table_schema=database () limit 0,1 )
像这样 mysql 里执行是报错的。
select*from (select table_name from information_schema.tables where table_schema=database () limit 0,1 )a 就可以成功执行,为什么呢?