sql中統計表的個數:
select count(*) from sys.objects where xtype='u' //表個數
select count(*) from sys.objects where xtype= 'v' //檢視個數
select count(*) from sys.objects where xtype= 'p' //儲存過程個數
sql獲得表名:
select name from sys.objects where xtype='u'
orcale中統計資料表的總個數:
select count(*) from dba_tables where owner='使用者名稱' ————有dba許可權
select count(*) from all_tables where owner='使用者名稱' ————普通使用者許可權
orcale獲得表名:
select name from dba_tables where owner='使用者名稱'
select name from all_tables where owner='使用者名稱'
oracle查詢統計資料
oracle 按每天,每週,每月,每季度,每年查詢統計資料 按天統計 select count dataid as 每天運算元量,sum from tablename group by trunc createtime,dd 按自然周統計 select to char date,iw sum fro...
oracle範圍統計資料
需求 充值總筆數 筆數 單筆0 200元 筆數 單筆201 300元 筆數 單筆301 500元 筆數 單筆501元及以上 參照範例 需求 統計wait order表中的工單總數 未處理工單總數 已完成工單總數 未完成工單總數。表結構 為了舉例子方便,wait order表只有兩個字段,分別是id ...
SQL統計資料量
很多時候遇到統計資料的問題,比如統計半年,每個月,每天24小時等等。每月 假定資料庫中為varchar2,如20160331165124.474 select cyear,cmonth,cday chour,cmin,count 1 from select from select to date s...