如何使用内置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 |
+------------+
我做,select curdate() from abc.xyz LIMIT 1
或
select DISTINCT curdate() from abc.xyz
这给了我预期的输出但是对我来说使用随机数据库及其表只是为了访问名称似乎并不合理。 这样做的正确方法是什么?
答案 0 :(得分:4)