I get the following error if I want to put these table rows together
[SQLITE_ERROR] SQL error or missing database (incomplete input)
each one works individually.
SELECT x.ActionListId, x.wordindexed, x.word, x.wordreplacement
from Words x
where x.wordindexed like "%Hallo %"
limit 1
union all
SELECT p.ActionListId, p.wordindexed, p.word, p.wordreplacement
from Words p
where p.word like "%Tool%"
limit 1;