-
C#教程之SQLserver、MySQL、ORCAL查询数据库、表、表中字段以及字段类型(2)
3、查询表中的字段以及字段类型
1
|
select column_name from user_tab_columns where table_name = 'table_name' ; --表名要全大写 |
参考网址1: https://www.cnblogs.com/lonelyxmas/p/10577287.html
参考网址2: https://www.jb51.net/article/136787.htm