Alias :name
/:csv
with :keys
/:values
#892
Pyrolistical
started this conversation in
Ideas
Replies: 2 comments 2 replies
-
You are formatting SQL Names, not SQL keys, i.e. you are confusing source with destination, i.e. each filter is named according to the expected result, not the type of source. |
Beta Was this translation helpful? Give feedback.
2 replies
-
Also, a little simpler syntax: await tx.none(
`
INSERT INTO "table"(
$/this:name/
)
VALUES(
$/this:csv/
)
`,
{
column_1: 'value 1',
column_2: 'value 2'
}
); |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
consider this insert
I think it would be more obvious we if we could write
Beta Was this translation helpful? Give feedback.
All reactions