My SQL statement is as follows:
select col1,col2,"ABC" as col3 from ..
col3
is a constant string.
How to implement this SQL query via DolphinDB metaprogramming? I have tried sqlCol("ABC")
or parseExpr
, but they all treat "ABC" as a column name.