SELECT query on a table with a space in the name using SQSH

末鹿安然 提交于 2019-12-10 12:50:37

问题


I'm using SQSH (version 2.1) on Ubuntu 10.04 to connect to a MSSQL database using a command like this:

sqsh -S server -U user -P password -D database

I have a table called My Table, but I cannot find a way to run a SELECT query on it. This is what I've tried so far:

SELECT * FROM 'My Table'
go

Output: Incorrect syntax near 'My Table'. (I get the same for double quotes)

\set t="My Table"
SELECT * FROM $t
go

Output: Invalid object name 'My'. (Which is weird because if I do \echo $t, I get the full table name)

SELECT * FROM My\\ Table
go

Output: Invalid object name 'My'.

SELECT * FROM [My Table]
go

Output: Unicode data in a Unicode-only collation or ntext data cannot be sent to clients using DB-Library (such as ISQL) or ODBC version 3.7 or earlier.

This last command works fine for table names without any spaces.

UPDATE: other commands work fine e.g. I can get the table description with:

SELECT column_name,data_type FROM information_schema.columns WHERE table_name = 'My Table'
go

回答1:


Putting the table name in quotes doesn't work in MS SQL Server.
The correct way is using [ ]:

SELECT * FROM [My Table]



回答2:


Im using SQL 2008R2, and the following works for me

['table name']



回答3:


Finally found the solution. I had to add the following 2 lines to /etc/freetds/freetds.conf

tds version = 8.0
client charset = UTF-8



回答4:


Try setting QUOTED_IDENTIFIER to ON when using SQL Server. For more info about QUOTED_IDENTIFIER see: http://msdn.microsoft.com/en-us/library/ms174393.aspx



来源:https://stackoverflow.com/questions/8926673/select-query-on-a-table-with-a-space-in-the-name-using-sqsh

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!