📜  MS Access 中的 Fix() 和 Format()函数

📅  最后修改于: 2022-05-13 01:55:31.080000             🧑  作者: Mango

MS Access 中的 Fix() 和 Format()函数

1. Fix()函数:
在 MS Access 中,fix()函数返回数字的整数部分。在这个函数中,一个数字将作为参数传递,它将返回该数字的整数部分。

句法 :

Fix(number) 

示例 1:

SELECT Fix(-75.43) AS FixNum;

输出 -

FixNum
-75

示例 2:

SELECT Fix(23.93) AS FixNum;

输出 -

FixNum
23

2. Format()函数:
在 MS Access 中,format函数将返回一个指定格式的数字在这个函数中,值将作为第一个参数传递,格式将作为第二个参数传递它将返回转换后的格式。

FormatDescription
General NumberFor without thousand separators.
StandardFor thousand separators + two digits to the right of the decimal place and minimum one digit to the left of the decimal place.
PercentFor percent value.
ScientificFor scientific value.
FixedFor one digit to the left of the decimal place and two digits to the right of the decimal place.
CurrencyFor currency, with thousand separators and two decimal places.
Yes/NoIf value==0 then no otherwise yes.
True/FalseIf value==0 then True otherwise False.
On/OffIf value==0 then Off otherwise On.

句法 :

Format(value, format) 

示例 1:

SELECT Format(0.55, "Percent") 
AS FormattedPercentage;

输出 -

FormattedPercentage
55.00%

示例 2:

SELECT Format(0.0000000004500121424255, "Scientific") 
AS FormattedScientific;

输出 -

FormattedScientific
4.50E-10