Displaying 2 results from an estimated 2 matches for "althow".
Did you mean:
altho
2007 Sep 25
4
Grandstream GXP2020 / 2000
Hi,
Has somebody experiences with the Grandstream GXP2020 / 2000 phones in a
business graded installation (with really traffic on .... not 3 calls a
day ;-) )
Of course with Asterisk PBX (1.4.1 or 1.4.11 or 1.4 in generall)
Thanks!
Kind Regards,
Erik
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