我正在尝试将一行数据插入到 SQL Azure 中的表中——
这是插入语句——
INSERT INTO cloud_storage_credentials (cloud_provider,api_key, api_secret)
VALUES("Rackspace", "<random_value>", "<random_value>");
但是我收到以下错误-
Msg 207, Level 16, State 1, Line 2
Invalid column name 'Rackspace'.
Msg 207, Level 16, State 1, Line 2
Invalid column name '<random_value>'.
Msg 207, Level 16, State 1, Line 2
Invalid column name '<random_value>'.
我在这里做错了什么?我按照 SQL Server 教程编写了上述查询......