redashのグラフ化でハマる
現象
redashを使って、下記のsqlである数を日毎に集計した折れ線グラフを作ろうとしたら、なぜかグラフがうまく作れませんでした。
SELECT date_format(datetime, '%y/%m/%d') AS date,
count(id) AS count
FROM sample
GROUP BY date;
解決
日付のフォーマットの%y/%m/%d
を%y-%m-%d
に修正したらきちんとグラフ化されました
mysqlの日付の形式が'2015-07-21'、'20150721'、20150721のようにしないと日付として認識されないからでしたー
日付リテラルと時間リテラル
SELECT date_format(datetime, '%y-%m-%d') AS date,
count(id) AS count
FROM sample
GROUP BY date;
Author And Source
この問題について(redashのグラフ化でハマる), 我々は、より多くの情報をここで見つけました https://qiita.com/nanaco/items/5b9637f7c59a9b078253著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .