我有一個寬度和高度(兩個整數)的表。我想按原樣顯示它。 對於例如:寬度= 300和高度= 160 面積= 300×160。 我使用以下查詢在PostgreSQL中連接
select cast(concat(width,'x',height) as varchar(20)) from table;
或
select concat(width,'x',height) from table;
但我正在下面的錯誤。
ERROR: function concat(character varying, "unknown", character varying) does not exist
Hint: No function matches the given name and argument types. You may need to add explicit type casts.
誰能告訴我該怎麼做? 感謝