gpt4 book ai didi

postgresql - 在 PostgreSQL 中用特定值填充表的所有列?

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

我有一个表格,我想用特定值填充一列。

示例表:它包括空的温度列,我想用 4.56 填充相关列的所有行。

+------------+------------------+|temperature |dt                |+------------+------------------+|            |9/15/2007 12:12:12|                  |            |9/15/2007 12:14:16||            |9/15/2007 12:16:02||            |9/15/2007 12:18:23||            |9/15/2007 12:21:01|+------------+------------------+

结果:

+------------+------------------+|temperature |dt                |+------------+------------------+| 4.56       |9/15/2007 12:12:12|                  | 4.56       |9/15/2007 12:14:16|| 4.56       |9/15/2007 12:16:02|| 4.56       |9/15/2007 12:18:23|| 4.56       |9/15/2007 12:21:01|+------------+------------------+

最佳答案

update the_table
set temperature = 4.56;
commit;

关于postgresql - 在 PostgreSQL 中用特定值填充表的所有列?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13581463/

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