--向student表中加入入學時間屬性,其資料型別為日期型
alter table student add scome date;
--刪除student表中的入學時間屬性
alter table student drop column scome;
--刪除基本表
drop table 《表名》;
--修改列
alter table student modify(列名 資料型別);
--修改表名
rename 《表名》 to 《新錶名》;
--修改列名
alter table 《表名》 rename column 《列名》 to 《新列名》;
--建立索引是加快查詢的有效手段,加快查詢速度
--為學生表student按姓名建立唯一索引
create unique index index_sname on student(sname);
--刪除索引
drop index 《索引名》;
drop index index_sname;
--單錶查詢
select 《查詢字段》
from 《表名》
where 《條件》;
--資料更新插入
insert into 《表名》 values(表中所有字段資訊);
insert into 《表名》(列名1,列名2...) values (列名內容);
--更新修改資料
update 《表名》
set 《列名》=《表示式》
where 《條件》;
--刪除資料
delete from 《表名》
where 《條件》;
--檢視:是從乙個或者幾個基本表匯出的表,是乙個虛表,可以限制使用者對資料庫的訪問
--例如:
create view vw_student
asselect sno,sname,sage
from student
where sdept='cs';
--授權
--授權使用者
grant select
on student
to user1;
--允許授權使用者把許可權授予給其他使用者
with grant option;
--許可權**
revoke update
on student
from user1;
Oracle資料庫對表字段的操作命令
在二次開發乙個工程時,經常會遇到對庫表的字段的操作,以下是部分常用到的命令 新增表 tdm weld 字段 例子1 alter table tdm weld add is aut number 1 default 0,is embalmed number 1 default 0 例子二 alter ...
Python操作Access資料庫基本操作步驟分析
我們在這篇文章中公分了五個步驟詳細分析了python操作access資料庫的相關方法,希望可以給又需要的朋友們帶來一些幫助。ad python程式語言的出現,帶給開發人員非常大的好處。我們可以利用這樣一款功能強大的物件導向開源語言來輕鬆的實現許多特定功能需求。比如python操作access資料庫的...
Python基礎 SQLite資料庫基本操作
sqlite資料庫的官網 有很多管理資料庫的工具,官方使用命令列進行管理,感覺太麻煩,使用db browser進行管理資料庫,附上官網 開啟後還是中文的,驚喜 安裝庫 pysqlite3 在進行對資料庫的操作之前,首先要使用函式connect開啟資料庫 通過物件的execute方法進行資料庫的各種操...