I need to save select query output into temporary table. Then I need to make another select query against this temporary table. Does anybody know how to do it?
I nee
In Sqlite:
Sqlite
CREATE TABLE T AS SELECT * FROM ...; -- Use temporary table `T` DROP TABLE T;