feat: 新增 NULL 常量的构建。

This commit is contained in:
Suomm 2023-07-08 08:30:23 +08:00
parent 1499640f96
commit 02334963d5

View File

@ -2387,6 +2387,13 @@ public class QueryMethods {
// === 构建 column === // === 构建 column ===
/**
* 构建 NULL 常量
*/
public static QueryColumn null_() {
return new StringQueryColumn("NULL");
}
/** /**
* 构建数字常量 * 构建数字常量
*/ */