我在SQL Server中插入查詢時遇到問題。查詢全文爲SQL Server查詢 - 插入問題
insert into franchise (fran_id, name, address1, address2, city, state, zip, email, phone, text)
values(0, "DevFranchise1", "101 Main St.", "-", "Brighton", "Mi", "48116", "[email protected]", 8105551234, "asdflkjsadf");
現在「狀態」和「文字」都亮藍色。它給我的錯誤列表如下:
Msg 207, Level 16, State 1, Line 1
Invalid column name 'DevFranchise1'
Msg 207, Level 16, State 1, Line 2
Invalid column name '101 Main St.'
這是什麼意思/我該如何解決它?
在將來我會避免使用任何關鍵字作爲列名。如果它變得像你描述的藍色,你知道什麼是... – 2010-01-07 15:57:46
感謝幫助夥計們,我第一次在IIS服務器上工作。 – 2010-01-07 17:21:35