資料庫查表和字段的操作!

2021-05-25 13:23:42 字數 662 閱讀 4914

1、查詢sql中的所有表:

select table_name from 資料庫名稱.information_schema.tables where table_type='base table'

執行之後,就可以看到資料庫中所有屬於自己建的表的名稱

2、查詢sql中所有表及列:

select dbo.sysobjects.name as table_name, dbo.syscolumns.name as column_name

from dbo.syscolumns inner join

dbo.sysobjects on dbo.syscolumns.id = dbo.sysobjects.id

where (dbo.sysobjects.xtype = 'u') and (not (dbo.sysobjects.name like 'dtproperties'))

3、在sql查詢分析器,還有乙個簡單的查詢方法:

exec sp_msforeachtable @command1="sp_spaceused '?'"

執行完之後,就可以看到資料庫中所有使用者表的資訊

4、查詢某個表中的所有字段

select name from syscolumns where id=object_id('表名')

資料庫字段操作

1.熟悉oracle sql server資料庫欄位的操作 1 新增乙個新的字段 2 刪除乙個字段 3 修改字段型別 1.在表中新增乙個新的字段 alter table 表名 add 欄位名稱 資料型別 2.修改表中的欄位名稱與字段型別 修改欄位名 alter table 表名 rename col...

mysql資料庫字段操作

建立測試表 create table test id int add支援多列,change drop需要在每列前新增關鍵字,逗號隔開,column 可有可無 新增多列 alter table test add c1 char 1 c2 char 1 alter table test add colu...

資料庫字段

mysql char size 字長字元,0 255位元組 varchar size 變長字元,0 255位元組 date 日期資料,格式為yyyy mm dd hh mm ss datetime 日期資料,比date更確切,包含分秒 int整形資料 double s,p 數字型,可存放實型和整形,...