Fusion SQL Search
Was this page helpful?
⌘I
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Action required: Upgrade to Fusion 5.17.2 to apply urgent security patches. Lucidworks Search clients will be upgraded automatically.
select id, title, score from books where abstract = 'hello world' order by score desc
select id, title, score from books where abstract = '(hello world)' order by score desc
select id, title, score from books where abstract = '("hello world"~4)' order by score desc
select id, title from books where abstract = '(he?lo)'
select id, title from books where abstract like 'worl%'
select id from products where prod_desc = 'bike' and price < 125 order by price asc
select id, prod_name, price_f from products where prod_desc = 'bike' order by price_f desc
Was this page helpful?