1.select
select 語句用於從表中選取資料。結果被儲存在乙個結果表中(稱為結果集)。語法:select 列名稱 from 表名稱。例如:
select
*from dbo.student
預覽如下:(下面就用這個資料庫的表做演示)
再如:
select
sname
,s***
,sage
from dbo.student
2.where
如需有條件地從表中選取資料,可將 where 子句新增到 select 語句。語法:select 列名稱 from 表名稱 where 列 運算子 值。下面的運算子可在 where 子句中使用:
操作符描述=等於
< >
不等大於<
小=大於等於
<=
小於等於
between
在某個範圍內
link
搜尋某種模式
注釋:在某些版本的 sql 中,操作符 <> 可以寫為 !=。
例如:
select
*from dbo.student
where sname=
'zy' or sage between
19and
20
3.order by
order by 語句用於根據指定的列對結果集進行排序。order by 語句預設按照公升序對記錄進行排序。如果您希望按照降序對記錄進行排序,可以使用 desc 關鍵字。例如:
select
*from dbo.student order
by sage
預覽如下:
逆序例如:
select
*from dbo.student order
by sage desc
4.insert into
insert into 語句用於向**中插入新的行。語法:insert into 表名稱 values (值1, 值2,…)我們也可以指定所要插入資料的列:insert into table_name (列1, 列2,…) values (值1, 值2,…)。例如:
insert
into dbo.student values
('200215140'
,'wmt'
,'女'
,'19'
,'ma'
)
5.update
update 語句用於修改表中的資料。語法:update 表名稱 set 列名稱 = 新值 where 列名稱 = 某值。例如:
update dbo.student set s*** =
'男', sage =
'20'
where sname =
'ztf'
6.delete
delete 語句用於刪除表中的行。語法:delete from 表名稱 where 列名稱 = 值。例如:
delete
from dbo.student where sname =
'zy'
小記
說不出這種感覺,沒有悲傷,也沒有喜悅,放下了吧。可能人大抵都是這樣的吧,就像我總喜歡在深冬時節懷念夏季聒噪的蟬鳴,卻又在秋風蕭瑟中不捨初春的驚蟄。
得到就請珍惜吧,祝福相離的緣,珍惜相守的緣。
忽然有一天,在**當中看到那個熟悉的背影,請不要叫停。時光味道侵染的她早已不再是原來的她,也許在分手的路口,早已經不是曾經的彼此。在某個滴雨的黃昏,伴著清香的茶將自己沉浸在氤氳的思念中,撫著心中或許還隱隱作疼的傷口試著去忘記吧,生活中的我們注定有著自己的宿命,這就是生活。
在茫茫人海中,彼此駐足而停留,彼此的深記,都是流年裡最美好的風景。
SQL基礎語法
select 語句用於從表中選取資料。結果被儲存在乙個結果表中 稱為結果集 select 列名稱 from 表名稱select from 表名稱如需獲取名為 lastname 和 firstname 的列的內容 從名為 persons 的資料庫表 請使用類似這樣的 select 語句 select ...
SQl基礎語法
1 ddl data define language 01.用來建立和刪除儲存資料的資料庫以及表等物件。create 建立資料庫或者表 create table a create database a drop 用來刪除表或者資料庫,刪除後無法恢復。drop table a drop databas...
SQL語法基礎
建立使用者 使用者名稱 gome 密碼 gome create user gome identified by gome create user gome identified by gome 授權 sys使用者是資料庫管理系統的許可權,包括底層的資料庫軟體,system是資料庫例項的許可權,最大的...