I think it would be nice to have better string concatenation, using the `+` operator: ```sql id + "abc" ``` From my understanding, this is not really a standard operator, so only some databases support it: * sql server supports it https://database.guide/6-ways-to-concatenate-string-and-number-sql-server/ * oracle sql and mysql doesn't support it, but they uses `||` https://www.sqlbook.com/sql-string-functions/sql-concatenate/ What are your opinions about it?
I think it would be nice to have better string concatenation, using the
+operator:From my understanding, this is not really a standard operator, so only some databases support it:
||https://www.sqlbook.com/sql-string-functions/sql-concatenate/What are your opinions about it?