QuestionQ14
Data Storage and ProcessingAn Architect runs the following statements in sequence:
create table emp(id integer);
insert into emp values (1),(2);
create temporary table emp(id integer);
insert into emp values (1);
The Architect then runs these statements:
select count(*) from emp;
drop table emp;
select count(*) from emp;
What is the result?
Community Discussion