資料庫修改表名,欄位名 字段型別

2021-08-11 10:39:47 字數 486 閱讀 9248

修改表:

(1)修改表的名稱呢

alter table 表名 rename to 新的名字;

demo:

alter table ta1 rename to ta0;

(2)新增乙個新字段

alter table 表名 add 新字段 欄位的型別;

demo:

alter table ta0 add unames varchar(20);

(3)修改字段:

alter table 表名  change 舊得字段  新的字段 欄位的資料型別;

alter table ta0 change unames uname varchar(20);

(4)修改欄位的型別:

alter table 表名  modify  字段  欄位的新型別

demo:                

alter table ta0 modify uname int;

獲取資料名稱 表名 欄位名 字段型別

1.獲取所有資料庫名 select from master.sysdatabases 2.獲取資料庫物件 select from sysobjects xtype 代表型別c check 約束 d 預設值或 default 約束 f foreign key 約束 l 日誌 fn 標量函式 if 內嵌...

ASP獲取資料庫表名,欄位名

在asp論壇上看到很多問怎麼獲取資料庫表名,欄位名以及如何對欄位進行刪除,增添的操作故寫此文。本人對sqlserver比較熟一些,故以sqlserver為列 set conn server.createobject adodb.connection conn.open server ip位址 pro...

取Oracle 表名 欄位名

檢視oracle 資料庫中本使用者下的所有表 select table name from user tables 檢視oracle 資料庫中所有使用者下的所有表 select user,table name from all tables 檢視oracle 資料庫中本使用者下的所有列 select...