I am using Microsoft SQL Server Management Studio, I am trying to run the following query to enter values ββinto a temporary table, which will be used later:
CREATE TABLE
When I start, I get the following error:
Msg 102, Level 15, State 1, Line 50
Invalid syntax next to ','.
Which points to the string "('col5', '811'),"
Can someone help me identify the problem here?
source share