Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
HANA sql 中是否有替代 MsSql 中可用的“交叉应用”运算符?或者有没有办法为表中的值应用函数?就像是
select T.*, F.* from T cross join someFunction(T.Value) F
您可以在 SAP HANA 中使用交叉连接,这不是问题。但是,如果要将函数应用于 T.VALUE 的所有条目,则查询需要如下所示:
select T.*, someFunction(T.Value) from T cross join F