In AWS Athena, I want to write a query like this:
SELECT some_function('row1,row2,row3');
And get back
row1
row2
row3
How do I do this?
I know I can write this instead, but it's less convenient for me:
select * from (values ('row1'), ('row2'), ('row3'))