Wouldn’t it be more handy to get a list created automatically when a process toList command is used in LP Query just like the T-SQL query below which creates a DB table automatically, rather than manually creating a dynamic list every time?
SELECT column1, column2, column3, ...
INTO newtable
FROM oldtable
WHERE condition;