第四章 數(shù)據(jù)庫(kù)及其操作
1、創(chuàng)建數(shù)據(jù)庫(kù):①.在項(xiàng)目管理器中建立
②.在菜單中建立
、.命令:creat database 數(shù)據(jù)庫(kù)名
2、打開數(shù)據(jù)庫(kù):open database 數(shù)據(jù)庫(kù)名
3、刪除數(shù)據(jù)庫(kù):delete database 數(shù)據(jù)庫(kù)名
4、修改數(shù)據(jù)庫(kù):modify database 數(shù)據(jù)庫(kù)名
5、關(guān)閉數(shù)據(jù)庫(kù):close database
6、打開表設(shè)計(jì)器:modify structure
7、增加表中字段:alter table 表名 add 字段名
8、刪除表中字段:alter table 表名 drop 字段名
9、修改表中字段:alter table 表名 rename 原字段 to 新字段
10、更改字段類型及寬度:alter table 表名 alter 字段名+類型(寬度)
11、顯示表:list structure
12、顯示全部表記錄:list
13、顯示當(dāng)前表記錄:display
14、記錄的絕對(duì)定位:go n
15、瀏覽,修改表:browse
16、編輯,修改表:edit/change
17、批量修改:replace all 字段 with 字段
18、邏輯刪除(只在記錄前加*,不刪除):delete
19、恢復(fù)邏輯刪除:recall
20、物理刪除:①.pack 只刪除帶*的記錄
、.zap 物理刪除表中全部記錄
21、關(guān)閉表:use
22、打開表:use 表名
23、復(fù)制表記錄:use 表名;copy to 新表名
24、復(fù)制表結(jié)構(gòu):use表名;copy structure to 新表名
25、追加表記錄:①.將另一個(gè)表中的記錄添加到該表中:use要追加記錄的表名;
append from有記錄的表名
②.在尾部追加記錄:append
、.在尾部增加一條空記錄:append blank
相關(guān)推薦:2010年9月計(jì)算機(jī)等級(jí)考試精華備考資料匯總