eqCol method

MssqlCondition eqCol(
  1. String identifier
)

Compares this expression to another column rather than to a value.

Implementation

MssqlCondition eqCol(String identifier) =>
    MssqlComparison(this, '=', Col(identifier));