色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

數(shù)據(jù)庫(kù)的增刪改查

數(shù)據(jù)庫(kù)的增刪改查?

1、數(shù)據(jù)庫(kù)增加數(shù)據(jù):

1)插入單行

insert [into] <表名> (列名) values (列值)

例:insert into t_table (name,sex,birthday) values ('開心朋朋','男','1980/6/15')

2)將現(xiàn)有表數(shù)據(jù)添加到一個(gè)已有表 insert into <已有的新表> (列名) select <原表列名> from <原表名>

例:insert into t_table ('姓名','地址','電子郵件')

select name,address,email from t_table

3)直接拿現(xiàn)有表數(shù)據(jù)創(chuàng)建一個(gè)新表并填充 select <新建表列名> into <新建表名> from <源表名>例:select name,address,email into t_table from strde

2、數(shù)據(jù)庫(kù)刪除數(shù)據(jù):

1)刪除<滿足條件的>行delete from <表名> [where <刪除條件>]。

例:delete from t_table where name='開心朋朋'(刪除表t_table中列值為開心朋朋的行)

2)刪除整個(gè)表 truncate table <表名>

truncate table tongxunlu

注意:刪除表的所有行,但表的結(jié)構(gòu)、列、約束、索引等不會(huì)被刪除;不能用語(yǔ)有外建約束引用的表

3、數(shù)據(jù)庫(kù)修改數(shù)據(jù) update <表名> set <列名=更新值> [where <更新條件>]

例:update t_table set age=18 where name='藍(lán)色小名'

4、數(shù)據(jù)庫(kù)查詢數(shù)據(jù):

1)精確(條件)查詢select <列名> from <表名> [where <查詢條件表達(dá)試>] [order by <排序的列名>[asc或desc]]

2)查詢所有數(shù)據(jù)行和列。例:select * from a

說(shuō)明:查詢a表中所有行和列

3)使用like進(jìn)行模糊查詢

注意:like運(yùn)算副只用于字符串,所以僅與char和varchar數(shù)據(jù)類型聯(lián)合使用

例:select * from a where name like '趙%'

說(shuō)明:查詢顯示表a中,name字段第一個(gè)字為趙的記錄

4)使用between在某個(gè)范圍內(nèi)進(jìn)行查詢

例:select * from a where nianling between 18 and 20

說(shuō)明:查詢顯示表a中nianling在18到20之間的記錄

5)使用in在列舉值內(nèi)進(jìn)行查詢

例:select name from a where address in ('北京','上海','唐山')

說(shuō)明:查詢表a中address值為北京或者上海或者唐山的記錄,顯示name字段