1
2
3
4
5
6
SQL-CMD = <<<SQL
select *
from $tablename
where id in [$order_ids_list]
and product_name = "widgets"
SQL;
heredoc
This post is licensed under CC BY 4.0 by the author.
1
2
3
4
5
6
SQL-CMD = <<<SQL
select *
from $tablename
where id in [$order_ids_list]
and product_name = "widgets"
SQL;
A new version of content is available.