Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
SELECT        a_id, c_id, company, address, phone, date, time, place
FROM            app
WHERE        (LTRIM(RTRIM(company)) =  'YOKOGAWA INDIA LIMITED'

ERROR : Showing error has incorrect syntax near YOKOGOWA INDIA LIMITED

share|improve this question
2  
This is not a question... – davioooh Feb 20 '12 at 16:01
you are giving a tiny amount of information on your problem with absolutely no context, you need to expand your question significantly – dormisher Feb 20 '12 at 16:02

closed as too localized by T.J. Crowder, cspray, casperOne Feb 26 '12 at 5:43

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

3 Answers

You're missing a close paren in your WHERE clause:

SELECT        a_id, c_id, company, address, phone, date, time, place
FROM            app
WHERE        (LTRIM(RTRIM(company))) =  'YOKOGAWA INDIA LIMITED'
share|improve this answer

You have an unmatched left paren in your WHERE clause. Your query should look like this:

SELECT        a_id, c_id, company, address, phone, date, time, place
FROM            app
WHERE        LTRIM(RTRIM(company)) =  'YOKOGAWA INDIA LIMITED'
share|improve this answer
Its automatically generating in C# query,then its not triming no records is selected – deena dayalan Feb 20 '12 at 16:05
This is my actual coding :select * from app where (ltrim(rtrim(company)))='" + comboBox1.Text + "' and (ltrim(rtrim(address)))='"+comboBox2.Text+"'',''"+comboBox3.Text+"'", connection – deena dayalan Feb 21 '12 at 14:59
MY data is ' YOKOGAWA INDIA LIMITED' 'DELHI,DELHI' – deena dayalan Feb 21 '12 at 15:01
BRIAN i Try that not worked in C# windows application – deena dayalan Feb 21 '12 at 15:02
@deenadayalan Why aren't you also trimming your combo box text? – Brian Driscoll Feb 21 '12 at 17:09
show 2 more comments

The where should be :

WHERE        
  (LTRIM(RTRIM(company))) =  'YOKOGAWA INDIA LIMITED'

Edit

The LTRIM removes the first spaces in the varchar. So if you have a statement like this:

SELECT LTRIM('     Remove the first spaces')

will return:

'Remove the first spaces'

The RTRIM will remove the last spaces in a varchar. So if you have a statement like this:

SELECT RTRIM('Remove the last spaces     ')

will return:

'Remove the last spaces'

if you what to remove all the spaces in a varchar. I would suggest using replace

SELECT REPLACE('Remove all spaces please',' ')

This will return

Removeallspacesplease

So if you are not sure if the string contains spaces I would go with a LIKE. Something like this:

WHERE        
   company LIKE '%YOKOGAWA INDIA LIMITED%'
share|improve this answer
two space is there ' YOKOGAWA INDIA LIMITED' ltrim and rtrim is not triming how to overcome this error " no records is selected. – deena dayalan Feb 20 '12 at 16:14
select * from app where (ltrim(rtrim(company)))='" + comboBox1.Text + "' and (ltrim(rtrim(address)))='"+comboBox2.Text+"'',''"+comboBox3.Text+"'", connection – deena dayalan Feb 21 '12 at 14:59

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