SqlTable constructor
Composes and wraps a table name or a table-valued function call.
Implementation
SqlTable(String name, [Sql? search])
: super(
search == null
? sqlIdentifier(name)
: "${sqlIdentifier(name)}(${search.str})",
);