gpt4 book ai didi

mysql - 插入临时表mysql

转载 作者:行者123 更新时间:2023-11-29 04:05:01 30 4
gpt4 key购买 nike

select t.* 
into #temp
from
(
select 'a' as a
union all
select 'b' as a
) as t

select * from #temp

drop table #temp

我通常在创建临时表的 SQL Server 上执行此操作。语法“into #temp”在数据库上创建一个非物理表,而“into temp”将在数据库上创建一个物理表。

我在MySQL中的问题是转换上面的MSSQL语句。我想要创建的是一个临时表,它不是在数据库上物理创建的。我们在 MySQL 中有这个功能吗?

最佳答案

在 MySQL 中,您可以使用 create temporary table as:

create temporary table temp as
select 'a' as a
union all
select 'b' as a ;

关于mysql - 插入临时表mysql,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50797330/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com