在DB2數據庫中創建了存儲數據的表之後,需要能夠將數據移入或移出表。將數據放入表中最簡單的方法是使用 INSERT 命令。為了插入數據,要提供想插入數據的表和列以及數據本身。在插入數據之後,就可以選擇、更新或刪除它。
這個練習演示如何將數據移入或移出數據庫。
在 Control Center Object 視圖中,選擇數據庫列表中的 AUTHOR 表並點擊 Open。
圖1. Control Center —— 打開表
如下圖所示,點擊 Add Row。將數據輸入列中並提交事務。
圖2. 添加行
如果沒有出現錯誤,就沒有反饋。點擊 Close 關閉 Open Table 窗口。
通過 Tools > Command Editor 打開 Command Editor。手工輸入 INSERT 命令,包括連接數據庫的語句:
connect to hellowld;
insert into hwld.author values ('Claire', 1, 'DB2 UDB',
'<author_info>
<name>Claire</name>
<ID>1</ID>
<department>
<department_title>DB2 CE</department_title>
<responsibility>Supporting customer problems</responsibility>
<start_year>2005</start_year>
</department>
<department>
<department_title>DB2 Index Manager</department_title>
<responsibility>Develop new features for DB2 indexes</responsibility>
<start_year/>
</department>
</author_info>', 100);
terminate;
(還可以使用命令編輯視圖執行同樣的操作。)
點擊綠色的三角圖標運行命令。圖3顯示預期的運行結果:
圖3. Command Editor —— 插入
如果表中有不再需要的數據,可以使用同樣的窗口刪除它。點擊表 AUTHOR 和 Open。
選擇第一行並點擊 Delete Row。點擊 Commit 提交刪除操作。如果決定中止刪除操作,那麼點擊 Roll Back 而不是 Commit。
點擊其他行並刪除它以清空這個表,然後點擊 Close。