SQl基礎語法

2021-08-28 16:06:37 字數 731 閱讀 6289

1、ddl(data define language)

01.用來建立和刪除儲存資料的資料庫以及表等物件。

create:建立資料庫或者表

create table a;

create database a;

drop:用來刪除表或者資料庫,刪除後無法恢復。

drop table a;

drop database a;

alter:修改資料庫或者表

2、dml (data manipulation language)查詢或者變更表中的記錄。

select:查詢表中的記錄。e

select * from a;

insert:在表中插入資料

insert into a (id,name,age)values (1,2,3);

update:更新表中的資料

update a set id =2 where id = 1;

update a set id = 2;

delete :刪除資料庫中的資料

delete from a;清空a表;

delete from a where id =2;刪除a表中id=2的資料。

dcl(data control labguage)

01.commit;提交事務;

02.pollback:回滾

03.grant:賦予使用者操作許可權

04.revoke:取消使用者操作許可權

SQL基礎語法

select 語句用於從表中選取資料。結果被儲存在乙個結果表中 稱為結果集 select 列名稱 from 表名稱select from 表名稱如需獲取名為 lastname 和 firstname 的列的內容 從名為 persons 的資料庫表 請使用類似這樣的 select 語句 select ...

SQL語法基礎

建立使用者 使用者名稱 gome 密碼 gome create user gome identified by gome create user gome identified by gome 授權 sys使用者是資料庫管理系統的許可權,包括底層的資料庫軟體,system是資料庫例項的許可權,最大的...

SQL語法基礎

建立使用者 使用者名稱 gome 密碼 gome create user gome identified by gome create user gome identified by gome 授權 sys使用者是資料庫管理系統的許可權,包括底層的資料庫軟體,system是資料庫例項的許可權,最大的...