一、oracle:mysql
select
count
(*)
from
user_tab_cols
where
table_name=
'表名'
;
--表名含英文的話應爲英文大寫字母
sql
二、mysql:oracle
select
count
(*)
from
information_schema.COLUMNS
where
table_name=
'表名'
;
--表名大小寫都可
sqlserver
三、sqlserver:code
select
count
(*)
from
syscolumns s
where
s.id = object_id(
'test'
);
--表名大小寫都可
orm