oracle資料庫基礎知識 DML

2021-08-11 14:56:40 字數 795 閱讀 6489

資料修改語言(data )

1.update

①.更新數字列則可以直接提供數字值,但是字元列或其他列則資料值需用單引號引住

②.更新的資料必須滿足約束條件

③.提供的資料 必須 與資料列型別匹配

修改資料  update  表名 set  欄位名=新值   where ***    單列修改 where可以你用寫

update  表名 set  欄位名=新值,欄位名=新值,.....         多列修改

update  表名  set  select  ***   from  ***  where ***   後面表的字段要和修改表的字段順序,型別保持一致

注意:如果更新的字段加了索引,更新時會重建索引,更新效率會慢。更新資料要1對1,否則會提示錯誤

2.delete

刪除資料  delete from 表名 where ***

3.insert into

插入資料  insert into (

欄位名) values(值);

insert into 表名 values(值); 值要和表的順序一致 插入1條資料

insert into 表名 select *** from *** where ***  (值要和表的順序一致)

Oracle資料庫基礎知識

schema是乙個oracle object schema object 的集合。和使用者一一對應,乙個使用者對應乙個schema。這些資料庫物件包括 tables,views,sequences,stored procedures,synonyms,indexes,clusters,and dat...

Oracle資料庫基礎知識

一 資料庫登陸操作命令 sqlplus username password connect identifier as sysoper sysdba username 表示登陸使用者名稱 password 標識登陸密碼 connect identifier 標識連線的全域性資料庫名,若鏈結本機上的預...

基礎技能 Oracle資料庫基礎知識

又名oracle rdbms,簡稱oracle。是甲骨文公司的一款關聯式資料庫管理系統。它是在資料庫領域一直處於領先地位的產品。可以說oracle資料庫系統是目前世界上流行的關聯式資料庫管理系統,系統可移植性好 使用方便 功能強,適用於各類大 中 小 微機環境。它是一種高效率 可靠性好的適應高吞吐量...