查询所有表,所有列


--当前用户
select * from user_tables;

select * from USER_TAB_COLUMNS  where table_name='CT_SENDMAILLISTCSV'

--所有用户
select * from all_tables;

select * from all_TAB_COLUMNS  where table_name='CT_SENDMAILLISTCSV'

你可能感兴趣的:(所有列,查询所有表)