2025-06-09 19:17:49 +02:00

5 lines
98 B
Transact-SQL

CREATE TABLE [dbo].[Table_1] (
[id] int NOT NULL IDENTITY(1,1),
[prova] varchar(50) NULL
)
GO