I know mysql but I now have a job where mssql is needed. I am having a problem inerting multiple rows at once.
MySQL Query:
INSERT INTO colours
(ccode, cdesc)
VALUES
('35', 'Green'),
('35', 'Turquoise')
How do I get the same result with MSSQL?
Thanks in advance.