Oracle怎样获取某个表的建表语句

2024-11-27 08:28:13
推荐回答(1个)
回答1:

例如:
获取scott用户下emp表建表语句:
select dbms_metadata.get_ddl('TABLE','EMP','SCOTT') from dual;