Select hardcoded values without table
Using unnest()
expand an array to a set of rows
select unnest(array['foo', 'bar', 'fooBar']);
demo
select a
from (
values ('foo'), ('bar'), ('fooBar')
) s(a);
http://www.postgresql.org/docs/current/static/queries-values.html