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.
MsSqlで利用可能な「クロス適用」演算子のHANA sqlに代替手段はありますか? または、テーブル内の値に関数を適用する方法はありますか? 何かのようなもの
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