from

open override fun from(source: String): SelectQueryBuilder

Sets the FROM clause.

The programmer is fully responsible for passing correct SQL syntax. The method does not perform any formatting or wrapping in parentheses.

Examples of valid values:

  • "legions"

  • "legions l"

  • "legions l JOIN provinces p ON l.province_id = p.id"

  • "(SELECT id FROM active_legions) AS l"

  • "UNNEST(@ids) AS id"