我正在尝试在 PostgreSQL 中进行简单的连接,但它不断抛出错误消息。我不明白我在这里做错了什么。
select concat('abcde', 'fgh');
No function matches the given name and argument types. You might need to add explicit type casts.
select concat(cast('abcde' as text), cast('fgh' as text));
No function matches the given name and argument types. You might need to add explicit type casts.
我正在使用 Postgres 版本 8.4.11。请让我知道发生了什么。