3.修改相应的防火墙规则
4.打开SQL Server Management Studio,连接到该Azure SQL Database
执行T-SQL语句
create table dbo.ChnStudent
(
unikey nvarchar(100) not null primary key clustered,
studentnumber int identity(1,1) not null,
value nvarchar(100) not null,
)
Go
insert into ChnStudent(unikey,value) values
('FEFC201F-67E8-484F-A931-E620DCDA9D08','小张')
,('6A987D4F-C9BF-4804-B5B5-E5223FC7DED7','小李')
,('0E467495-D139-4550-BBC1-610CD8305CD0',N'小张')
,('B7BE884D-5650-460D-BE60-C1585D3CE1DE',N'小李')
5.查看执行结果: