Oracle基礎知識 SQL簡單命令

2021-09-08 07:40:30 字數 1023 閱讀 1588

sql語句包括兩個部分:1 ddl 資料定義語言 2 dml 資料控制語言

ddl:

create:建立乙個表

create table b(

clob char(1)

);

alter:增加已經定義的表列的分配

drop:刪除乙個表

desc:檢視乙個表的定義

dml:

selelct:

select * from b;
insert:

insert into state values('fds','fds');
update:修改已有的資料

delete:刪除已有的資料

帶or/and的where子句:

select a,b,c from tablename where a='111',and b='222';

select a,b,c from tablename where a='111',or b ='222';

帶not的where子句

select a,b,c from tablename where a != 1;

帶搜尋範圍的where子句

select a,b,c  from tablename

where b between 1 and 19;

帶搜尋列表的where子句

select a,b,c  from tablename

where a in ('1','2');

帶模式搜尋的where子句

select a,b,c from tablename where a like 'a%';

posted @

2012-12-07 20:32

xingoo 閱讀(

...)

編輯收藏

Oracle模式SQL基礎知識

建立用於測試的表及資料 create table t603 code varchar2 10 year varchar2 10 month varchar2 10 p id varchar2 7 v1 number 10 v2 number 10 comment on column t603.cod...

Oracle模式SQL基礎知識

建立用於測試的表及資料 create table t603 code varchar2 10 year varchar2 10 month varchar2 10 p id varchar2 7 v1 number 10 v2 number 10 comment on column t603.cod...

SQL基礎知識

本篇文章是講解sql的基礎知識,但也講得不全面,我只記錄了自己不懂的或者不熟悉的東西。一 在sql中簡單的查詢 1.重複的記錄 distinct 可以通過在選擇列表前的select語句中插入關鍵字distinct來消除重複的查詢結果記錄。比如 select distinct city from ci...