SQL Server:从包含&的表中选择

时间:2012-11-15 21:16:08

标签: sql sql-server vb.net ampersand

我无法从包含&的表格中进行选择(符号)。我正在使用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`

有什么想法吗?

1 个答案:

答案 0 :(得分:9)

SELECT * FROM [Appointments&Results]

这回答了你的问题。

我的问题是,世界上有谁用&符号(&)命名该表?!