
# 算术函数
安全云脑SecMaster SQL语法支持的算术函数如下表所示：
表1SecMaster SQL语法支持的算术函数 
| 函数                   | 函数功能说明                                                                                                            |
|:---|:---|
| + numeric            | 返回 numeric。                                                                                                       |
| - numeric            | 返回 numeric 的相反数。                                                                                                  |
| numeric1 + numeric2  | 返回 numeric1 加 numeric2。                                                                                           |
| numeric1 - numeric2  | 返回 numeric1 减 numeric2。                                                                                           |
| numeric1 \* numeric2 | 返回 numeric1 乘以 numeric2。                                                                                          |
| numeric1 / numeric2  | 返回 numeric1 除以 numeric2。                                                                                          |
| UUID()               | 根据 RFC 4122 类型 4（伪随机生成）UUID，返回 UUID（通用唯一标识符）字符串。 例如"3d3c68f7-f608-473f-b60c-b0c44ad4cc4e"，UUID 是使用加密强的伪随机数生成器生成的。 |
   
