0

I need to know if it's possible to get all rows from fts table when user doesn't type any text.

I need this, because when app starts, I need to show all rows.

How can I achieve this?

vitorvigano
  • 697
  • 2
  • 8
  • 18

1 Answers1

1

There is no MATCH expression that would return all records.

Just make a special case for the empty string, and use the plain

SELECT * FROM MyTable
CL.
  • 173,858
  • 17
  • 217
  • 259