Please give me an advice to convert below MSSQL VIEW to HANA VIEW
CREATE VIEW [dbo].[ViewSample]
AS
SELECT [column1] + ' / ' + [cloumn2] AS CollectionLabel
FROM [dbo].[T1] T1
CROSS JOIN [dbo].[T2] T2
Thanks in advance
There is also a concat operator which allows you to do that (||)
CREATE VIEW "dbo"."ViewSample"
AS
SELECT "column1" || ' / ' || "cloumn2" AS CollectionLabel
FROM "dbo"."T1" T1
CROSS JOIN "dbo"."T2" T2