-
Notifications
You must be signed in to change notification settings - Fork 52
Open
Labels
Description
Hello, I use your library to generate sql for Clickhouse server.
I cannot use question mark because the Clickhouse php library doesn't support them.
Is there any way to name parameter?
My query looking like that:
SELECT "date", "id" FROM "users" WHERE ("date" >= ? AND "date" <= ?);I need something like that:
SELECT "date", "id" FROM "users" WHERE ("date" >= :date AND "date" <= :date);or that:
SELECT "date", "id" FROM "users" WHERE ("date" >= {date} AND "date" <= {date});Maybe this is already possible with the library?
Eventually, is there a method to mix query and parameters? That way, I can cheat by managing the params myself
Reactions are currently unavailable