I am using SQLite Studio. When I create a table I can see and add data to it. I cannot see a temporary table. My code:
create temporary table Books2
(
Title varchar(32) primary key,
year integer not null,
des varchar(750) null
);
insert into Books2
values
(
'CLRS',
'2000',
'A book in Algorithms'
);
How can I access and see the data of Books2
?