Displaying 1 result from an estimated 1 matches for "parser200x".
2008 Nov 06
4
SQL question
This works as expected in sqlite3
select id, title || body as tb from docs where tb like ''%en%''
But fails in postgres because tb is unknown.
and works in ms-sql like:
select id from docs where title+body like ''%en%''
I didn''t tried Oracle but I guess it has its own sintax too.
So my questions are.
1. Is there universal SQL syntax to support this