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
ERROR : Showing error has incorrect syntax near YOKOGOWA INDIA LIMITED |
|||||||
|
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.
|
You're missing a close paren in your
|
|||
|
|
|
You have an unmatched left paren in your WHERE clause. Your query should look like this:
|
|||||||||||
|
|
The
Edit The LTRIM removes the first spaces in the varchar. So if you have a statement like this:
will return:
The RTRIM will remove the last spaces in a varchar. So if you have a statement like this:
will return:
if you what to remove all the spaces in a varchar. I would suggest using replace
This will return
So if you are not sure if the string contains spaces I would go with a LIKE. Something like this:
|
|||||
|