Click here to Skip to main content
15,893,337 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I haveTable with 10 columns where two columns name are like 'RDS/DealerCode' & 'RDS/DealerName' now i want to fetch rows having 'RDS/DealerCode' = 'ABC'.

How i can fetch that, Because below query is giving me error and if i use column name in single qotes same query fives me 0 result
Posted
Comments
Ramug10 6-Mar-14 4:35am    
below query???
André Kraak 6-Mar-14 4:40am    
Please add the query you mention to the question using the 'Improve question' option.

1 solution

USe as below

Select * from testtable where [RDS/DealerCode] = 'ABC'
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900