查詢出一個表的所有字段信息,包括字段名、字段類型、字段長度、是都允許空值等等。
select * from user_tab_columns c where c.table_name = upper('表名字') |
George World技術改變明天,創新塑造未來! i(at)huadev.com Follow Me: http://t.sina.com.cn/georgeworld |
查詢出一個表的所有字段信息,包括字段名、字段類型、字段長度、是都允許空值等等。
select * from user_tab_columns c where c.table_name = upper('表名字') |