January 1, 2019 at 11:02 pm
Hello,
I have sp
Takes multiple parameters A1 A2 A3 A4
How can I insert them each in a row
Thanks
January 1, 2019 at 11:44 pm
the same row?
INSERT INTO MyTable(col1, col2, col3, col4) VALUES (@param1, @param2, @param3, @param4);
January 2, 2019 at 6:34 am
Based on the question and if you intend to use SQL on a regular basis (you are creating a stored procedure so I assume you're doing something with SQL on a regular basis), I would urge you to take some time to learn about the SQL language. That's not meant as a slam. It's meant as a recommendation to keep you out of trouble and to further your career.
--Jeff Moden
Change is inevitable... Change for the better is not.
Viewing 3 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic. Login to reply