gpt4 book ai didi

mysql - 使用mysql select将数据放入另一个表中?

转载 作者:行者123 更新时间:2023-11-29 08:06:35 26 4
gpt4 key购买 nike

我有以下查询:

use datafeeds;
select date, speed, dir from weather
where date >= DATE_SUB(NOW(),INTERVAL 1 DAY);

选择此数据:

date                   speed   dir           
2014-03-23 19:33:00 100 e
2014-03-23 19:38:00 26 se
2014-03-23 19:43:01 37 e
2014-03-23 19:48:01 93 sw
2014-03-23 19:53:01 47 nne
2014-03-23 19:58:01 81 n
2014-03-23 20:03:00 28 s
2014-03-23 20:08:00 12 nw

我想修改它,以便将每个风向的数据输入到自己的表中。我需要它来创建玫瑰图。

所以我会有 16 个表,比如一个名为 Wind_e 的表,其中包含(日期,速度)在风中

date                   speed              
2014-03-23 19:33:00 100
2014-03-23 19:43:01 37

最佳答案

要插入到 wind_e 表,请使用此

  insert into wind_e (date,speed)
select date, speed from weather
where dir = 'e'
AND date >= DATE_SUB(NOW(),INTERVAL 1 DAY)

wind_n也是如此,其他表依此类推...

关于mysql - 使用mysql select将数据放入另一个表中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22616386/

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