oracle怎么把一个用户下的表复制给另一个用户?(授予表权限)时间:2023-03-09 00:19:19 //把system读写权限 授权给scottselect 'Grant all on '||table_name||' to scott;' from all_tables where owner = upper('system'); 然后执行以上的所有查询结果;