I need to select few constants as if it was a table. I found similar question for postgress:
Select hardcoded values without table
But it doesnt work with SQLite. This:
select * from (
values (1),(2),(3),(4),(5)
);
returns 1
5 times instead.
How do I fix it?