can I place a sql query in a sql hana place holder
问题 can I place a sql query in a sql hana place holder? the following query works: Select * From table1 ('PLACEHOLDER' = ('$$IP_ShipmentDate$$', '2020-01-01')) I am trying to pass something like the following: Select * From table1 ('PLACEHOLDER' = ('$$IP_ShipmentDate$$', Select TO_VARCHAR(min("some_date"),'YYYY-MM-DD') from Table2) Currently getting a syntex error 回答1: As error says you, expressions are not supported for column view parameter: Can't use column expression as column view parameter