sql獲取資料庫-九游会j9娱乐平台
1、雙擊打開mysql軟體,在左側中找到【表】並且右擊選擇【新建表】,
② 如何通過sql獲取資料庫所有表數據
1.查詢資料庫中的所有資料庫名:
select name from master..sysdatabases order by name
2.查詢某個資料庫中所有的表名:
select name from sysobjects where xtype='u' order by name
3.查詢表結構信息:
1 select (case when a.colorder=1 then d.name else null end) 表名,
2 a.colorder 欄位序號,a.name 欄位名,
3 (case when columnproperty( a.id,a.name,'isidentity')=1 then '√'else '' end) 標識,
4 (case when (select count(*) from sysobjects
5 where (name in (select name from sysindexes
6 where (id = a.id) and (indid in
7 (select indid from sysindexkeys
8 where (id = a.id) and (colid in
9 (select colid from syscolumns where (id = a.id) and (name = a.name)))))))
10 and (xtype = 'pk'))>0 then '√' else '' end) 主鍵,b.name 類型,a.length 佔用位元組數,
11 columnproperty(a.id,a.name,'precision') as 長度,
12 isnull(columnproperty(a.id,a.name,'scale'),0) as 小數位數,(case when a.isnullable=1 then '√'else '' end) 允許空,
13 isnull(e.text,'') 默認值,isnull(g.[value], ' ') as [說明]
14 from syscolumns a
15 left join systypes b on a.xtype=b.xusertype
16 inner join sysobjects d on a.id=d.id and d.xtype='u' and d.name<>'dtproperties'
17 left join syscomments e on a.cdefault=e.id
18 left join sys.extended_properties g on a.id=g.major_id and a.colid=g.minor_id
19 left join sys.extended_properties f on d.id=f.class and f.minor_id=0
20 where b.name is not null
21 --where d.name='要查詢的表' --如果只查詢指定表,加上此條件
22 order by a.id,a.colorder
③ sql 獲取資料庫當前數據是第幾條的語句怎麼寫
1.查找一下小於等於id值的記錄數就行了
select
count(*)
from
表
where
id<=id的值
2.用row_number()
select
row_number()
over(order
by
field1)
as
row_number,*
from
t_table
其中row_number列是由row_number函數生成的序號列。在使用row_number函數是要使用over子句選擇對某一列進行排序,然後才能生成序號。
實際上,row_number函數生成序號的基本原理是先使用over子句中的排序語句對記錄進行排序,然後按著這個順序生成序號。over子句中的order
by子句與sql語句中的order
by子句沒有任何關系,這兩處的order
by
可以完全不同