SQL表中名为aggregate(Value~Groups, df1, function(x)
+(any(x > 1, na.rm = TRUE)), na.action = na.pass)
# Groups Value
#1 G1 1
#2 G2 0
#3 G3 1
#4 G4 0
#5 G5 1
的列包含以下格式的数据: 2019-05-10 00:00:00
有没有我可以写的查询来处理它并将其显示为: 2019年5月10日,星期五。
我尝试过st_date
。它没有给我那个。
也尝试过CAST(st_date AS Date)
。
我希望日期显示为 2019年5月10日,星期五。 我正在将PHP与SQL一起使用。
答案 0 :(得分:1)
您将会从这个link得到您的所有希望。
SELECT DATE_FORMAT('2019-05-10 00:00:00', '%W, %D %M %Y') cust_date