标签:object_id aci padding baseline back oracl code ali weight
看具体是什么数据库,以oracle,mysql,sqlserver分别回答。
1、oracle:
1
|
select count (*) from user_tab_cols where table_name= ‘表名‘ ; --表名含英文的话应为英文大写字母 |
结果如图:
2、mysql:
1
|
select count (*) from information_schema.COLUMNS where table_name= ‘表名‘ ; --表名大小写均可 |
结果如图:
3、sqlserver:
1
|
select count (*) from syscolumns s where s.id = object_id( ‘test‘ ); --表名大小写均可 |
结果如图:
标签:object_id aci padding baseline back oracl code ali weight
原文地址:https://www.cnblogs.com/lightpro/p/10528534.html