「MySQL」現在の時刻を文字列で取得する

2021年12月30日

書式
CURTIME()
CURTIME 関数を使うと現在の時刻を 'hh:mm:ss’ または hhmmss 形式で取得します。

使用例
1.現在の時刻を文字列として取得します

SQL構文
select curtime();
実行結果
curtime()
15:46:30

2.現在の日付と時刻を数値として取得します

SQL構文
select curtime() + 0 as result ;
実行結果
result
62320

3.引数に小数秒の精度を指定します

SQL構文
select curtime(0), curtime(4);
実行結果
curtime(0)	curtime(4)
06:33:05	06:33:05.6364

 

MySQL

Posted by arkgame