table method
Implementation
@override
QueryBuilder table(String table, [String? as]) {
SqlIdentifierGuard.table(table);
if (as != null) SqlIdentifierGuard.alias(as);
_table = table;
_tableAlias = as;
return this;
}
@override
QueryBuilder table(String table, [String? as]) {
SqlIdentifierGuard.table(table);
if (as != null) SqlIdentifierGuard.alias(as);
_table = table;
_tableAlias = as;
return this;
}