Postgres的订单得到错误的结果:
postgres=# SELECT (url) FROM posts_post ORDER BY url;
url
--------------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------
http://nautil.us/issue/70/variables/aging-is-a-communication-breakdown
https://github.com/felixse/FluentTerminal
http://www.bbc.com/future/story/20160408-the-ancient-peruvian-mystery-solved-from-space
http://www.graffathon.fi/2016/presentations/additive_slides.pdf
(4 rows)
如您所见,“ http://nautil.us/issue/70/variables/aging-is-a-communication-breakdown”存在问题。无法正确排序。
我使用Python和psycopg2将解析后的结果保存在Postgres中,然后指出无法测试排序,导致Postgres返回顺序出错。
UPD:再现:
CREATE TABLE test_post ("id" serial NOT NULL PRIMARY KEY, "title" text NOT NULL, "url" text NOT NULL, "created" timestamp with time zone NOT NULL);
INSERT INTO test_post (title, url, created) VALUES ('Aging Is', 'http://nautil.us/issue/70/variables/aging-is-a-communication-breakdown', NOW()) ON CONFLICT DO NOTHING;
INSERT INTO test_post (title, url, created) VALUES ('Untrusted – a user', 'https://github.com/felixse/FluentTerminal', NOW()) ON CONFLICT DO NOTHING;
INSERT INTO test_post (title, url, created) VALUES ('Artyping (1939)', 'http://www.bbc.com/future/story/20160408-the-ancient-peruvian-mystery-solved-from-space', NOW()) ON CONFLICT DO NOTHING;
INSERT INTO test_post (title, url, created) VALUES (' Applying the Universal', 'http://www.graffathon.fi/2016/presentations/additive_slides.pdf', NOW()) ON CONFLICT DO NOTHING;
SELECT (url) FROM test_post ORDER BY url;
x86_64-pc-linux-gnu上的PostgreSQL 11.2(Debian 11.2-1.pgdg90 + 1),由gcc(Debian 6.3.0-18 + deb9u)编译 1)6.3.0 20170516,64位
答案 0 :(得分:3)
假设您使用的是UTF8编码,那么指定排序规则而不是接受默认设置应该可以解决您的直接问题。这是否是正确的事情,取决于应用程序。
有几种不同的方法可以指定排序规则。您可以在初始化数据库集群,创建数据库,运行查询等时指定它。有关更多详细信息,请参阅文档中的Collation support。
CREATE TABLE test_post (
"id" serial NOT NULL PRIMARY KEY,
"title" text NOT NULL,
"url" text collate ucs_basic NOT NULL,
"created" timestamp with time zone NOT NULL
);
INSERT INTO test_post (title, url, created) VALUES
('Aging Is', 'http://nautil.us/issue/70/variables/aging-is-a-communication-breakdown', NOW()) ON CONFLICT DO NOTHING;
INSERT INTO test_post (title, url, created) VALUES
('Untrusted – a user', 'https://github.com/felixse/FluentTerminal', NOW()) ON CONFLICT DO NOTHING;
INSERT INTO test_post (title, url, created) VALUES
('Artyping (1939)', 'http://www.bbc.com/future/story/20160408-the-ancient-peruvian-mystery-solved-from-space', NOW()) ON CONFLICT DO NOTHING;
INSERT INTO test_post (title, url, created) VALUES
(' Applying the Universal', 'http://www.graffathon.fi/2016/presentations/additive_slides.pdf', NOW()) ON CONFLICT DO NOTHING;
SELECT (url) FROM test_post ORDER BY url;
http://nautil.us/issue/70/variables/aging-is-a-communication-breakdown
http://www.bbc.com/future/story/20160408-the-ancient-peruvian-mystery-solved-from-space
http://www.graffathon.fi/2016/presentations/additive_slides.pdf
https://github.com/felixse/FluentTerminal