您的位置: 首页 > IT文章 > 基本查询语句 基本查询语句 分类: IT文章 • 2024-02-09 19:54:01 连接服务器 查询表的某几列: select 列名1,列名2,... from 表名; 例如: select empno,sal from emp; 查询某个表的所有列 select * from 表名; select * from emp;