1. 程式人生 > >基本SQL,SELECT語句

基本SQL,SELECT語句

alt rom 分行 sql 技術分享 .cn src blog 也不能

SQL 語言大小寫不敏感。

SQL 可以寫在一行或者多行 關鍵字不能被縮寫也不能分行 各子句一般要分行寫。

使用縮進提高語句的可讀性。

select語句

例如表:SCOTT.EMP

技術分享

select * from SCOTT.EMP where comm > sal;

技術分享

*代表通配符。表示所有列

select sal,comm from scott.emp where ename = ‘WARD‘ ;

技術分享

註意:ename是字符串所以註意其大小寫。

select * from scott.emp where ename like ‘S%‘;

技術分享

select *from scott.emp where deptno in (10,20);

技術分享

select *from scott.emp where comm is not null;

技術分享

select sal+10000 ,ename , job,empno from scott.emp ;

技術分享

select * from (select * from scott.emp where empno>7600) where deptno in(20,30);

技術分享

基本SQL,SELECT語句