gpt4 book ai didi

mysql - 只显示一次日期[优雅的方式]

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

如何使用内置 Date and Time functions 显示日期仅一次

如果我这样做,select curdate() from abc.xyz; 它会返回类似这样的内容,

+------------+
| curdate() |
+------------+
| ... |
| 2013-07-23 |
| 2013-07-23 |
| 2013-07-23 |
| 2013-07-23 |
| ... |
+------------+

行数等于表中的元组数。

为了让它返回我这个,

+------------+
| curdate() |
+------------+
| 2013-07-23 |
+------------+

我愿意,从 abc.xyz LIMIT 1 中选择 curdate()

从 abc.xyz 中选择 DISTINCT curdate()

这给了我预期的输出,但使用随机数据库及其表只是为了访问名称对我来说似乎并不明智。 这样做的正确方法是什么?

最佳答案

根本不要使用 FROM 子句。

查询的全部优点:

SELECT CURDATE();

并且,here's a fiddle with no tables at all进行演示。

关于mysql - 只显示一次日期[优雅的方式],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17807246/

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