【Oracle】数据库查询所有并按顺序显示部分字段

早先用sql server的时候是这样的:

查全表:select * from table;

查部分字段:select name,id,*  from table;

当再用到Oracle时

查全表:select * from table;

查部分字段:select ac.name,ac.id,ac.* from table ac;

这是我早期遇到的疑惑,,,要显示部分字段并且同事没空理你时,在网上居然没找到??是太简单了吗???默认会的那种??

猜你喜欢

转载自blog.csdn.net/CountryShi/article/details/106121537