現在時刻
1 |
> select now(); |
月だけを抽出
1 |
> select name,month(created) from users; |
日付の差分を日数で求める
1 |
> select name datediff(now(),created) from users; |
最近はウェブ系アプリ中心、あとWindowsアプリちょっと
現在時刻
1 |
> select now(); |
月だけを抽出
1 |
> select name,month(created) from users; |
日付の差分を日数で求める
1 |
> select name datediff(now(),created) from users; |