我无法从包含&的表格中进行选择(符号)。我正在使用VB.NET查询SQL Server数据库,它抛出的异常是
'&'
附近的语法不正确
这是我正在使用的代码:
Using Com As New SqlCommand("SELECT * FROM Appointments&Results", Conn)
Using RDR = Com.ExecuteReader()
If RDR.HasRows Then
Do While RDR.Read
'Get values here
Loop
End If
End Using
End Using
以下是我尝试的查询:
SELECT * FROM `Appointments&Results`
SELECT * FROM 'Appointments&Results'
SELECT * FROM `Appointments&&Results`
SELECT * FROM `Appointments&Results`
有什么想法吗?
答案 0 :(得分:9)
SELECT * FROM [Appointments&Results]
这回答了你的问题。
我的问题是,世界上有谁用&符号(&
)命名该表?!