标签: mysql
我们可以做到,
例如:select *,count(id)from table_name
但是从table_name中选择count(id),*是错误的。为什么*必须放第一个?
例如:select table(id),* from table_name