skip to Main Content

Azure SQL DB not updating varchar length

I created a table using the following SQL command: CREATE TABLE [my-azure-db].dbo.MyTable ( Id int IDENTITY(1,1) NOT NULL, Name nvarchar(32) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL, ); When I check the table with DBeaver, it looks like this: Therefore, I tried to…

VIEW QUESTION
Back To Top
Search