Hello.
Sorry for novice question, i have a really limited experience working with SQL :(. I have two tables. First one:
create table history ( id integer primary key, task integer )
And second one:
create table task ( id integer primary key, name text )
What will be an SQLite query that will return a list of history.id and task.name where history.task == task.id ( all items from 'history' table with 'name's from 'task' table )?