betweenColumns method
BETWEEN two other columns rather than two values.
Implementation
MssqlCondition betweenColumns(String lower, String upper) =>
MssqlBetweenColumns(this, Col(lower), Col(upper), negated: false);
BETWEEN two other columns rather than two values.
MssqlCondition betweenColumns(String lower, String upper) =>
MssqlBetweenColumns(this, Col(lower), Col(upper), negated: false);