-
Notifications
You must be signed in to change notification settings - Fork 442
Closed
Labels
Description
Input data
IF OBJECT_ID(N'[DatanexMigrationTable]') IS NULL BEGIN CREATE TABLE [DatanexMigrationTable] ( [MigrationId] nvarchar(150) NOT NULL, [ProductVersion] nvarchar(32) NOT NULL, CONSTRAINT [PK_DatanexMigrationTable] PRIMARY KEY ([MigrationId]) );END; BEGIN TRANSACTION; CREATE TABLE [ss] ( [Id] int NOT NULL IDENTITY, [mae] nvarchar(max) NULL, CONSTRAINT [PK_ss] PRIMARY KEY ([Id])); INSERT INTO [DatanexMigrationTable] ([MigrationId], [ProductVersion])VALUES (N'20241207180533_Wigucipiqixukawo', N'8.0.6'); COMMIT;
Which SQL and options did you provide as input?
sql server
Actual Output
Error: Unsupported SQL dialect: SQL Server