CREATE TABLE IF NOT EXISTS news (
title TEXT PRIMARY KEY,
newsletter_description TEXT NOT NULL
);
I need to write a query which selects all the news
that contain the word "apple" or "watermelon"(or both) in their title
or in their newsletter_description
and I am not very sure about how I can do that. (case insensitive, it can also be "AppLe" or "WaterMelon")