database-builder
Version:
Library to assist in creating and maintaining SQL commands.
17 lines (16 loc) • 554 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Condition = void 0;
var Condition;
(function (Condition) {
Condition["Not"] = "NOT";
Condition["IsNull"] = "IS NULL";
Condition["Equal"] = "=";
Condition["Great"] = ">";
Condition["Less"] = "<";
Condition["GreatAndEqual"] = ">=";
Condition["LessAndEqual"] = "<=";
Condition["Between"] = "BETWEEN";
Condition["In"] = "IN";
Condition["Like"] = "LIKE";
})(Condition = exports.Condition || (exports.Condition = {}));