K
Kysely4mo ago
mike

Partial compile

Hello everyone, is it possible (somehow) to generate only part of the compiled query? I have an edge-case when want to use only part ("where" statement in my case) of the compiled query from kysely. Is there any short-way to do it? I definitely don't want to parse the result. Thanks Mike
3 Replies
Unknown User
Unknown User4mo ago
Message Not Public
Sign In & Join Server To View
mike
mike4mo ago
looks interesting. thank you @subframe75361 , I also need to transform... select a.* from table as a to:
select
a.column1 as "a.column1",
a.column2 as "a.column2",
a.column3 as "a.column3"
from
table as a
select
a.column1 as "a.column1",
a.column2 as "a.column2",
a.column3 as "a.column3"
from
table as a
any idea...?
Unknown User
Unknown User4mo ago
Message Not Public
Sign In & Join Server To View
Want results from more Discord servers?
Add your server
More Posts