如何修复编码错误UTF -8 -PostgreSQL

发布于 2025-01-22 08:02:41 字数 274 浏览 0 评论 0原文

我在线遵循说明以在PGADMIN4中创建数据库。我已经成功导入了一个CSV文件并创建了一个表。但是,我无法从表中选择任何东西。

我的代码是:

从传输中选择 *;

错误消息是:'utf-8'编解码器无法解码byte 0xc3在位置0:

运行'show server_encoding'的数据的意外结束'show server_encoding'给出“ utf8”输出。 运行'show client_encoding在输出中给出“ unicode”。

I am following instructions online to create a database in pgAdmin4. I have successfully imported a csv file and created a table. However, I cannot select anything from the table.

My code is:

SELECT * FROM transfers;

Error message is: 'utf-8' codec can't decode byte 0xc3 in position 0: unexpected end of data

Running 'show server_encoding' gives "UTF8" in the output.
Running 'show client_encoding gives "UNICODE" in the output.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

抚笙 2025-01-29 08:02:41

也许您将Excel文件保存为CSV,并导入到帖子中,如果是的话,请打开Excel,创建一个空白的CSV文件,然后将Excel数据复制/粘贴到那里并保存。删除您以前的帖子表并再次导入新创建的CSV文件。

Maybe you saved an excel file as csv and imported to postgre, if so, open excel, create a blank csv file and copy/paste your excel data to there and save. Delete your previous postgre table and import newly created csv file again.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文