is there any way to represent runtime values in drizzle?

example:
WITH numbers AS (
  VALUES (1), (2), (3), (4)
)
SELECT * FROM numbers LIMIT 1;
Was this page helpful?