script into sql
Hello All,I always need to turn a list into a format that can run as sql, like this:LISTABCDEinto in('A','B','C','D','E') Right now, I have to use 'query builder->filter the table->select from a list' then copy the [ in('A','B','C','D','E') ] from there. Is there a scripting way that I can use as template no matter what list I work on? Like I run the same code then get the list in sql way....