sql >> データベース >  >> RDS >> Mysql

MySQLで現在の年、現在の月、現在の日を取得する

    MySQLで現在の年、現在の月、現在の日を検索するためによく使用されるコマンドを次に示します。

    MySQLで現在の年を4桁で取得します:

    select year(now()) as 'current year';

    または

    select date_format(now(),'%Y') as 'current year';
    +----------------+
    |  current year  |
    +----------------+
    |     2013       |
    +----------------+

    MySQLで現在の年を2桁で取得します:

    select date_format(now(),'%y') as 'current year';
    +----------------+
    |  current year  |
    +----------------+
    |       13       |
    +----------------+

    MySQLで今月を取得する:

    select month(now()) as 'current month';

    また

    1. カーソルでフィールド値を取得する

    2. Oracleでの現在までの文字列(ミリ秒単位)

    3. SQL Server(T-SQL)で高度なサーバー構成オプションを表示する

    4. 月の最後の日を見つけるためのSQLクエリ