Here is a table definition:
CREATE TABLE dbo.TableOnlyPK
(
Id tinyint PRIMARY KEY IDENTITY (1, 1)
)
Now I need to insert row into that table through T-SQL statements: I've tried few solutions, but no one worked.
INSERT INTO dbo.TableOnlyPK () VALUES () -- not worked
