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.
在我从一些查询中得到结果后,是否有任何从这些结果创建的临时表的名称???
不,但您可以轻松地从 select 语句的结果创建一个临时表:
CREATE TEMPORARY TABLE temptablename AS SELECT ...;
然后得到结果:
SELECT * FROM temptablename;