資料庫修改功能主要分為增加列、刪除列、設定列值、改變列屬性等
mysql
alter
table 表名 add
column 列名 varchar(30);
oracle
oracle資料庫中給表增加一列並設定預設值:
alter
table 表名 add 列名 型別 default 值 < not
null>;
例子:alter
table assp_voucher_model_stamp add mrdai number
default
10000
notnull;
sql_server
alter
table 表名 add 列名 《字段型別》 《是否為空》
例子: alter categoriesnew add commission money null
hive
hive不允許修改字段值,其增加字段方法如下:
alter table 表名 add
columns( 新增列名1 列名屬性)
mysql
alter
table 表名 drop
column 字段列名
oracle
alter
table 表名 drop
column 字段列名;
sql_server
alter
table 表名 drop
column 字段列名;
hive
mysql
update 表名 set 欄位名 = 值
oracle
update 表名 set 字段='值'
where 條件;
sql_server
update
"表名"
set"欄位1" = [新值] where
update wap_lenovo_bookmark set type = 'other'
hive
目前看起來不允許此操作。
多種資料庫的模糊查詢比較
單個字段 1.1 mysql select from table name where field name like concat key word 比如查詢朋友表裡名字含有心的名字,如下 select name from friend where name like concat 心 1.2 o...
多種資料庫操作
using system using system.data using system.configuration using system.linq using system.web using system.web.security using system.web.ui using syste...
Java多種資料庫連線
jdbc odbc string driver sun.jdbc.odbc.jdbcodbcdriver string url jdbc odbc dbsource dbsource為資料來源名 string username username 使用者名稱 string password passw...