querySubSelect static method
Creates a subselect for the SQL query.
The sqlBuilder parameter is required. It should contain an instance of SqlBuilder that represents the subselect.
This method returns a subselect as a string.
Usage:
var subselect = SqlBuilder.querySubSelect(sqlBuilder);
Implementation
static String querySubSelect(SqlBuilder sqlBuilder) {
return '(${sqlBuilder.build()})';
}