drop table tab1 purge
ORA-00942: table or view does not existMore Details: https://docs.oracle.com/error-help/db/ora-00942
drop table tab2 purge
ORA-00942: table or view does not existMore Details: https://docs.oracle.com/error-help/db/ora-00942
create table tab1
(
usr number,
name varchar2(10)
)
Table created.
create table tab2
(
usr number,
name varchar2(10),
salary number
)
Table created.
insert into tab1
values (1111, 'Jerry')
1 row(s) inserted.
insert into tab1
values (2222, 'John')
1 row(s) inserted.
insert into tab1
values (3333, 'Scott')
1 row(s) inserted.
insert into tab2
values (1111, 'Jerry', 5001)
1 row(s) inserted.
insert into tab2
values (3333, 'Jerry', NULL)
1 row(s) inserted.
drop table tab1 purge
Table dropped.
drop table tab2 purge
Table dropped.
create table tab1
(
usr number,
name varchar2(10)
)
Table created.
create table tab2
(
usr number,
name varchar2(10),
salary number
)
Table created.
insert into tab1
values (1111, 'Jerry')
1 row(s) inserted.
insert into tab1
values (2222, 'John')
1 row(s) inserted.
insert into tab1
values (3333, 'Scott')
1 row(s) inserted.
insert into tab2
values (1111, 'Jerry', 5001)
1 row(s) inserted.
insert into tab2
values (3333, 'Jerry', NULL)
1 row(s) inserted.
commit
Statement processed.
drop table tab1 purge
Table dropped.
drop table tab2 purge
Table dropped.
create table tab1
(
usr number,
name varchar2(10)
)
Table created.
create table tab2
(
usr number,
name varchar2(10),
salary number
)
Table created.
insert into tab1
values (1111, 'Jerry')
1 row(s) inserted.
insert into tab1
values (2222, 'John')
1 row(s) inserted.
insert into tab1
values (3333, 'Scott')
1 row(s) inserted.
insert into tab2
values (1111, 'Jerry', 5001)
1 row(s) inserted.
insert into tab2
values (3333, 'Jerry', NULL)
1 row(s) inserted.
commit
Statement processed.