如何修复编码错误UTF -8 -PostgreSQL
我在线遵循说明以在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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许您将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.