SQL語句 單錶查詢

2021-09-27 07:51:28 字數 896 閱讀 1959

select * from table
select col1, col2 from table
select * from table

where condition

篩選數字屬性列

篩選字串屬性列

通過limit選取部分結果

選取前n行的記錄

select * from table

where condition

limit n

選取第m+1行開始往後的n個記錄

select * from table

where condition

order by col1 asc/desc, col2 asc/desc

limit m,n

選取第m+1行開始到最後的記錄

select * from table

where condition

order by col desc

limit m,-1

select單錶查詢語句 簡單SQL語句

使用order by 子句對查詢結果進行排序 排序方式包括公升序 asc,可省略 和降序 desc 兩種 select empno,ename,sal from emp order by sal select empno,ename,sal from emp order by sal desc 按多...

SQL單錶查詢

1 單錶查詢 從資料庫中查詢資料 專業的稱謂又稱為投影 基本查詢語句結構 select 列 from 表 注 所有列不是所有其他東西 查詢所有資料 例 select from employees 當然你首先資料庫裡得有著張employees表才能查詢出來 如果你需要執行比較細的操作 那就再加上條件篩...

SQL單錶查詢

sql view plain copy 1,選擇不猛30中的雇員 select from emp where deptno 30 2,列出所有辦事員的姓名,編號和部門 select ename,empno,deptno from emp where job clerk 3,找出佣金高於薪金的雇員 s...