Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Oracle 数据库中创建了一个名为ABC的用户。在此之前,我在名为SYSTEM的用户中创建了一个名为Demo的表。现在我还需要在ABC中创建一个同名的表。我该怎么做?
带有模式 (ABC) 的表名前缀
create table abc.demo (c1 varchar2(10));
尝试切换到架构,如:
ALTER SESSION SET CURRENT_SCHEMA = ABC
然后创建表