gpt4 book ai didi

MySQL创建临时表

转载 作者:行者123 更新时间:2023-11-29 12:14:35 25 4
gpt4 key购买 nike

无法理解为什么这个创建临时表不起作用..任何人都可以建议..?

create temporary table if not exists table2 AS (select unix_timestamp(concat(delivery_date, ' ', str_to_date(delivery_time,'%h:%i%p'))) as timestamp, id from fruit.order_delivery_orders where calendar_id is not null);

出现错误“查询中断”。

这个查询工作正常 -

select unix_timestamp(concat(delivery_date, ' ', str_to_date(delivery_time,'%h:%i%p'))) as timestamp, id from fruit.order_delivery_orders where calendar_id is not null

最佳答案

请使用以下语法。希望这对您有帮助。

 CREATE TABLE [ IF NOT EXISTS ] table_name AS SELECT column_names FROM table_name_2 WHERE condition;

关于MySQL创建临时表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30044354/

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