當前位置:首頁 » 操作系統 » 資料庫增刪改查語句

資料庫增刪改查語句

發布時間: 2023-09-02 05:53:59

sql常用增刪改查語句

SQL常用增刪改查語句大全

SQL常用的增刪改查語句有哪些?為方便同學們復習SQL語句,我為大家分享SQL增刪改查語句如下:

1增

1.1【插入單行】

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

例:insert into Strdents (姓名,性別,出生日期) values ('開心朋朋','男','1980/6/15')

1.2【將現有表數據添加到一個已有表】

insert into <已有的新表> (列名) select <原表列名> from <原表名>

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

select name,address,email

from Strdents

1.3【直接拿現有表數據創建一個新表並填充】

select <新建表列名> into <新建表名> from <源表名>

例:select name,address,email into tongxunlu from strdents

1.4【使用union關鍵字合並數據進行插入多行】

insert <表名> <列名> select <列值> tnion select <列值>

例:insert Students (姓名,性別,出生日期)

select '開心朋朋','男','1980/6/15' union(union表示下一行)

select '藍色小明','男','19**/**/**'

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

2刪

2.1【刪除<滿足條件的>行】

delete from <表名> [where <刪除條件>]

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

2.2【刪除整個表】

truncate table <表名>

truncate table tongxunlu

注意:刪除表的所有行,但表的結構、列、約束、索引等不會被刪除;不能用語有外建約束引用的表

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

3改

update <表名> set <列名=更新值> [where <更新條件>]

例:update tongxunlu set 年齡=18 where 姓名='藍色小名'

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

4查

4.1``精確(條件)查詢

select <列名> from <表名> [where <查詢條件表達試>] [order by <排序的列名>[asc或desc]]

4.1.1【查詢所有數據行和列】

例:select * from a

說明:查詢a表中所有行和列

4.1.2【查詢部分行列--條件查詢】

例:select i,j,k from a where f=5

說明:查詢表a中f=5的所有行,並顯示i,j,k3列

4.1.3【在查詢中使用AS更改列名】

例:select name as 姓名 from a where xingbie='男'

說明:查詢a表中性別為男的所有行,顯示name列,並將name列改名為(姓名)顯示

4.1.4【查詢空行】

例:select name from a where email is null

說明:查詢表a中email為空的所有行,並顯示name列;SQL語句中用is null或者is not null來判斷是否為空行

4.1.5【在查詢中使用常量】

例:select name, '唐山' as 地址 from Student

說明:查詢表a,顯示name列,並添加地址列,其列值都為'唐山'

4.1.6【查詢返回限制行數(關鍵字:top percent)】

例1:select top 6 name from a

說明:查詢表a,顯示列name的前6行,top為關鍵字

例2:select top 60 percent name from a

說明:查詢表a,顯示列name的60%,percent為關鍵字

4.1.7【查詢排序(關鍵字:order by , asc , desc)】

例:select name

from a

where chengji>=60

order by desc

說明:查詢a表中chengji大於等於60的所有行,並按降序顯示name列;默認為ASC升序

4.2``模糊查詢

4.2.1【使用like進行模糊查詢】

注意:like運算副只用於字元串,所以僅與char和varchar數據類型聯合使用

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

說明:查詢顯示表a中,name欄位第一個字為趙的記錄

4.2.2【使用between在某個范圍內進行查詢】

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

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

4.2.3【使用in在列舉值內進行查詢】

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

說明:查詢表a中address值為北京或者上海或者唐山的記錄,顯示name欄位

4.3``.分組查詢

4.3.1【使用group by進行分組查詢】

例:select studentID as 學員編號,AVG(score) as 平均成績 (注釋:這里的score是列名)

from score (注釋:這里的score是表名)

group by studentID

說明:在表score中查詢,按strdentID欄位分組,顯示strdentID欄位和score欄位的平均值;select語句中只允許被分組的'列和為每個分組返回的一個值的表達式,例如用一個列名作為參數的聚合函數

4.3.2【使用having子句進行分組篩選】

例:select studentID as 學員編號,AVG(score) as 平均成績 (注釋:這里的score是列名)

from score (注釋:這里的score是表名)

group by studentID

having count(score)>1

說明:接上面例子,顯示分組後count(score)>1的行,由於where只能在沒有分組時使用,分組後只能使用having來限制條件。

4.4``.多表聯接查詢

4.4.1內聯接

4.4.1.1【在where子句中指定聯接條件】

例:select a.name,b.chengji

from a,b

where a.name=b.name

說明:查詢表a和表b中name欄位相等的記錄,並顯示表a中的name欄位和表b中的chengji欄位

4.4.1.2【在from子句中使用join…on】

例:select a.name,b.chengji

from a inner join b

on (a.name=b.name)

說明:同上

4.4.2外聯接

4.4.2.1【左外聯接查詢】

例: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相同

4.4.2.2【右外聯接查詢】

例: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相同

;

❷ 用SQL語句隨便寫一條資料庫增刪改查語句

一、增:有2種方法

1.使用insert插入單行數據:

語法:insert [into] <表名> [列名] values <列值>

例:insert into Strdents (姓名,性別,出生日期) values ('王偉華','男','1983/6/15')

注意:此森輪如果省略表名,將依次插入所有列

2.使用insert,select語句將現有表中的 數據添加到已有的新表中

語法:insert into <已有的新表> <列名> select <原表列春巧名> from <原表名>

例:insert into addressList ('姓名','地址','電子郵件')select name,address,email

fromStrdents

注意:查詢得到的數據個數、順序、數據類型等,必須與插入的項保持一致

二、刪:有2中方法

1.使用delete刪除數據某些數據

語法:delete from <表名> [where <刪除條件>]

例:delete from a where name='王偉華'(刪除表a中列值為王偉森信華的行)

注意:刪除整行不是刪除單個欄位,所以在delete後面不能出現欄位名

2.使用truncate table 刪除整個表的數據

語法:truncate table <表名>

例:truncate table addressList

注意:刪除表的所有行,但表的結構、列、約束、索引等不會被刪除;不能

用於有外建約束引用的表

三、改使用update更新修改數據

語法:update <表名> set <列名=更新值> [where <更新條件>]

例:update addressList set 年齡=18 where 姓名='王偉華'

注意:set後面可以緊隨多個數據列的更新值(非數字要引號);where子句是可選的(非數字要引號),用來限制條件,如果不選則整個表的所有行都被更新

四、查

語法:select <列名> from <表名> [where <查詢條件表達試>] [order by <排序的列

名>[asc或desc]]

1).查詢所有數據行和列

例:select * from a

說明:查詢a表中所有行和

2).查詢部分行列--條件查詢

例:select i,j,k from a where f=5

說明:查詢表a中f=5的所有行,並顯示i,j,k3列

3).在查詢中使用AS更改列名

例:select name as 姓名from a where gender='男'

說明:查詢a表中性別為男的所有行,顯示name列,並將name列改名為(姓名)顯示

4).查詢空行

例:select name from a where email is null

說明:查詢表a中email為空的所有行,並顯示name列;SQL語句中用is null或者is not null

來判斷是否為空行

5).在查詢中使用常量

例:select name '北京' as 地址 froma

說明:查詢表a,顯示name列,並添加地址列,其列值都為'北京'

6).查詢返回限制行數(關鍵字:top )

例1:select top 6 name from a

說明:查詢表a,顯示列name的前6行,top為關鍵字(oracle 中沒有top關鍵字

用rownum替代)

select * from a where rownum<6

7).查詢排序(關鍵字:order by , asc , desc)

例:select name

from a

where grade>=60

order by desc

說明:查詢表中成績大於等於60的所有行,並按降序顯示name列;默認為ASC升序

❸ 資料庫的增刪改查

1、資料庫增加數據:

1)插入單行

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

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

2)將現有表數據添加到一個已有表 insert into <已有的新表> (列名) select <原表列名> from <原表名>

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

select name,address,emailfrom t_table

3)直接拿現有表數據創建一個新表並填充select <新建表列名> into <新建表名> from <源表名>例:select name,address,email into t_table from strde

2、資料庫刪除數據:

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

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

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

truncate table tongxunlu

注意:刪除表的所有行,但表的結構、列、約束、索引等不會被刪除;不能用語有外建約束引用的表

3、資料庫修改數據 update <表名> set <列名=更新值> [where <更新條件>]

例:update t_table set age=18 where name='藍色小名'

4、資料庫查詢數據:

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

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

說明:查詢a表中所有行和列

3)使用like進行模糊查詢

注意:like運算副只用於字元串,所以僅與char和varchar數據類型聯合使用

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

說明:查詢顯示表a中,name欄位第一個字為趙的記錄

4)使用between在某個范圍內進行查詢

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

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

5)使用in在列舉值內進行查詢

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

說明:查詢表a中address值為北京或者上海或者唐山的記錄,顯示name欄位

(3)資料庫增刪改查語句擴展閱讀:

插入之前需要創建數據表,創建方式如下:

CREATE TABLE 表名稱
(
列名稱1 數據類型,
列名稱2 數據類型,
列名稱3 數據類型,
....
)

例如:--流程步驟定義表

create table T_flow_step_def(

Step_no int not null, --流程步驟ID

Step_name varchar(30) not null, --流程步驟名稱

Step_des varchar(64) not null, --流程步驟描述

Limit_time int not null, --時限

URL varchar(64) not null, --二級菜單鏈接

Remark varchar(256) not null,

)

❹ 資料庫中增刪改查的基本語句是什麼

常見如下:

進入mysql命令行: mysql -uroot -p;查看所有資料庫: show databases;增加創建資料庫: create database niu charset utf8;刪除資料庫: drop database niu;選擇資料庫: use databases。

查看所有表: show tables;查看創建資料庫的語句:show create database databasename;查看創建表的語句:show create table tablename;查看錶結構:desc tablenmae。

相關簡介

mysql_stmt_fetch是函數名,mysql_stmt_fetch()返回結果集中的下一行。

僅能當結果集存在時調用它,也就是說,調用了能創建結果集的mysql_stmt_execute()之後,或當mysql_stmt_execute()對整個結果集即行緩沖處理後調用了mysql_stmt_store_result()。

使用mysql_stmt_bind_result()綁定的緩沖,mysql_stmt_fetch()返回行數據。對於當前列集合中的所有列,它將返回緩沖內的數據,並將長度返回到長度指針。

熱點內容
安卓快手極速版在哪裡填寫邀請碼 發布:2025-01-31 22:59:36 瀏覽:319
如何讓給文件夾設置密碼查看 發布:2025-01-31 22:49:07 瀏覽:2
配置動態路由協議配錯了怎麼改 發布:2025-01-31 22:49:07 瀏覽:77
掃行程碼為什麼需要支付密碼 發布:2025-01-31 22:47:08 瀏覽:738
什麼樣的配置能玩地平線4 發布:2025-01-31 22:44:05 瀏覽:241
python正則表達式符號 發布:2025-01-31 22:43:50 瀏覽:391
androidmime 發布:2025-01-31 22:34:44 瀏覽:782
ftp和http的中文含義是 發布:2025-01-31 22:33:48 瀏覽:402
sqlite3存儲圖片 發布:2025-01-31 22:27:14 瀏覽:162
sqlserverphp 發布:2025-01-31 22:22:55 瀏覽:877