1、【插入單行】
insert [into] <表名> (列名) values (列值)
例:insert into Strdents (姓名,性別,出生日期) values ('開心朋朋','男','1980/6/15')


2、【刪除<滿足條件的>行】
delete from <表名> [where <刪除條件>]
例:delete from a where name='開心朋朋'(刪除表a中列值為開心朋朋的行)


3、【刪除整個(gè)表】
truncate table <表名>
truncate table tongxunlu
注意:刪除表的所有行,但表的結(jié)構(gòu)、列、約束、索引等不會(huì)被刪除;不能用語有外建約束引用的表


4、【修改數(shù)據(jù)】
update <表名> set <列名=更新值> [where <更新條件>]
例:update tongxunlu set 年齡=18 where 姓名='藍(lán)色小名'

5、【查詢部分行列--條件查詢】
select <列名> from <表名> [where <查詢條件表達(dá)試>] [order by <排序的列名>[asc或desc]]
例:select i,j,k from a where f=5
說明:查詢表a中f=5的所有行,并顯示i,j,k3列

6、【左外聯(lián)接查詢】
例:select s.name,c.courseID,c.score from strdents as s left outer join score as c on s.scode=c.strdentID
說明:在strdents表和score表中查詢滿足on條件的行,條件為score表的strdentID與strdents表中的sconde相同

7、【右外聯(lián)接查詢】
例:select s.name,c.courseID,c.score from strdents as s  right outer join score as c on s.scode=c.strdentID
說明:在strdents表和score表中查詢滿足on條件的行,條件為strdents表中的sconde與score表的strdentID相同

分類: Oracle

http://www.cnblogs.com/taowd/p/6904823.html