标签:
连接服务器
查询表的某几列:
select 列名1,列名2,... from 表名;
例如: select empno,sal from emp;
查询某个表的所有列
select * from 表名;
select * from emp;
基本查询语句
原文地址:http://www.cnblogs.com/q827418266/p/5785602.html