I’m learning how to use SQL Server Management Studio and can’t figure out how to insert a new row into a table.
Table Structure:
ID,
Field1,
Field2
Query:
INSERT INTO Table (Field1,Field2) VALUES(1,2)
Error:
Major Error 0x80040E14, Minor Error 25503
I’m probably missing something very simple. Any help would be appreciated.
Ok, I was on the verge of pulling out all of my hair, and it appears using single quotes instead of double quotes fixed the problem.
Now, I want to pull my hair out even more.
Thanks for the replies everyone. This one was my mistake.