How to do - MS SQL C# Excel Access
Saturday, 18 November 2017
MSSQL - Fix Error - Incorrect syntax near '='
Watch this example on YouTube
To fix it replace
Declare @test int = 0
if(@test
==
0)
begin
print 'Zero'
end
with
Declare @test int = 0
if(@test
=
0)
begin
print 'Zero'
end
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment