查看所有表
select * from user_tables;
查看某个表的所有列信息
select * from user_tab_columns where table_name = 'T_TMP_TEST';
本文介绍如何使用SQL语句查看数据库中的所有表及其所有列信息,包括使用`select * from user_tables;`获取所有表和`select * from user_tab_columns where table_name='T_TMP_TEST';`获取特定表的列信息。
查看所有表
select * from user_tables;
查看某个表的所有列信息
select * from user_tab_columns where table_name = 'T_TMP_TEST';
9111
726
5214
1097
2984
489
749

被折叠的 条评论
为什么被折叠?