怎样在access中用sql语句查询某张表的字段类型和长度?
发布网友
发布时间:2024-10-20 06:55
我来回答
共1个回答
热心网友
时间:2024-11-21 18:52
SQL : select * from information_schema.tables
ORACLE: select table_name from user_tables
ACCESS: select name from MSysObjects where type=1 and flags=0
希望采纳谢谢~!