Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

One of my columns is called "from". I can't change it, I didn't make it. Am I allowed to do something like "SELECT from FROM TableName"?

Or is there a special syntax to avoid the SQL server being confused?

I am using Microsoft SQL Server (express i think) and Java JDBC, if that matters...

Thanks

Nathan

share|improve this question

8 Answers

up vote 64 down vote accepted

Wrap the column name in brackets like so, from becomes [from].

select [from] from table;
share|improve this answer
1  
What about: select TableName.from from TableName; PS: It works in MySQL – Fabricio PH Sep 10 '12 at 15:09

While you are doing it - alias it as something else (or better yet, use a view or an SP and deprecate the old direct access method).

SELECT [from] AS TransferFrom -- Or something else more suitable
FROM TableName
share|improve this answer

If it had been in PostgreSQL, use double quotes around the name, like:

select "from" from "table";

Note: Internally PostgreSQL automatically converts all unquoted commands and parameters to lower case. That have the effect that commands and identifiers aren't case sensitive. sEleCt * from tAblE; is interpreted as select * from table;. However, parameters inside double quotes are used as is, and therefore ARE case sensitive: select * from "table"; and select * from "Table"; gets the result from two different tables.

share|improve this answer
The double quotes work for MS SQL, too, without the case sensitivity, though. Quoted identifiers are just, AFAIK, an equivalent alternative to bracket-delimited identifiers. – P Daddy Nov 15 '08 at 20:28

If you ARE using SQL Server, you can just simply wrap the square brackets around the column or table name.

select [select]
from [table]
share|improve this answer

Your question seems to be well answered here, but I just want to add one more comment to this subject.

Those designing the database should be well aware of the reserved keywords and avoid using them. If you discover someone using it, inform them about it (in a polite way). The keyword here is reserved word.

More information:

"Reserved keywords should not be used as object names. Databases upgraded from earlier versions of SQL Server may contain identifiers that include words not reserved in the earlier version, but that are reserved words for the current version of SQL Server. You can refer to the object by using delimited identifiers until the name can be changed." http://msdn.microsoft.com/en-us/library/ms176027.aspx

and

"If your database does contain names that match reserved keywords, you must use delimited identifiers when you refer to those objects. For more information, see Identifiers (DMX)." http://msdn.microsoft.com/en-us/library/ms132178.aspx

share|improve this answer

You can put your column name in bracket like:

Select  [from] from < ur_tablename>

Or

Put in a temprary table then use as you like.
Example:

Declare @temp_table table(temp_from varchar(max))

Insert into @temp_table
Select * from your_tablename

Here I just assume that your_tablename contains only one column (i.e. from).

share|improve this answer
3  
That presumes that [from] is the only column that your_tablename has got. – Andriy M Jan 15 '12 at 17:48

I ran in the same issue when trying to update a column which name was a keyword. The solution above didn't help me. I solved it out by simply specifying the name of the table like this:

UPDATE `survey`
SET survey.values='yes,no'
WHERE (question='Did you agree?')
share|improve this answer

Hi I work on Teradata systems that is completely ANSI compliant. Use double quotes " " to name such columns.

E.g. type is an SQL reserved keyword but when used within quotes is treated as a user specified name.

See below image for code example:

Code Example

share|improve this answer
3  
Why on earth are you making a screenshot rather than copy&pasting? – tombom Oct 5 '12 at 14:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.