My question is - it is a single word (keyword) search. I have the
database schema too. How do i search this keyword through this schema
or the entire data. How do i convert this keyword into a sql query
that the database system would understand and query the database.
Eg keyword- river.
I would appreciate advice.
TIA.
You can do a text search on a single column with a text index. You should
do something like this:
WHERE text_srch_col @@ to_tsquery('keyword & ice')
You can not do a search the entire schema.
I don't understand.
What do you mean by "spatial database"? PostGIS?
What is a "keyword search"?
Maybe you could post a little example...
Yours,
Laurenz Albe