Automatically insert SQL function arguments
Hi, i am writing a sql query/mutation like such
INSERT INTO mytable (
first_argument, ...., tenth_argument
) VALUES (
$1, ..., $10
)
Is there a way to autocomplete all the $1, $2, etc function arguments instead of typing them all out? In case of a table with a lot of columns, there is a lot to type :)
Thanks.
Please sign in to leave a comment.
Thank you for contacting us.
We need more clarification on your current use case. Therefore, could you clarify where the function parameters are defined? Is this a built-in function or a custom one that you created yourself? Is your goal to have all the arguments of a specific function autocomplete in a single line instead of having them all typed individually?
Please let us know.