|
|
|
|
|
by aethr
559 days ago
|
|
Using (from -> where -> select), how would you provide type hints on the where clause when your select includes non-table columns? SELECT
COUNT(col_a) as count
WHERE
count > 0
Kysely uses (from -> select -> where), and allows joins and selects in multiple places, like (from -> join -> select -> join -> select -> where). |
|