table method

  1. @override
QueryBuilder table(
  1. String table, [
  2. String? as
])
override

Implementation

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