如何使用 SQL*Plus 创建一个打印所有表中所有记录的查询?
我可以使用以下方法检索所有表:
select object_name from all_objects
where owner='me' and object_type='TABLE'
如何使用 SQL*Plus 创建一个打印所有表中所有记录的查询?
我可以使用以下方法检索所有表:
select object_name from all_objects
where owner='me' and object_type='TABLE'