整数は数字の列として表現されます。浮動小数点では、小数を区切るために
‘.
’
が使用されます。どちらの型の数値でも、先頭に
‘-
’
を付けることによって、負数を表すことができます。
有効な整数の例:
1221 0 -32
有効な浮動小数点数の例:
294.42 -32032.6809e+10 148.00
浮動小数点のコンテキストで整数を使用することもできます。この場合、整数は同等の浮動小数点数として解釈されます。
バージョン 4.1.0 以降、定数 TRUE
は 1
として評価され、定数
FALSE
は 0
として評価されます。
This is a translation of the MySQL Reference Manual that can be found at dev.mysql.com. The original Reference Manual is in English, and this translation is not necessarily as up to date as the English version.