Hej.
Łukasz Łazarecki:
> sortowanie stringow troche padlo, bo np. nie uwzglednia znaczkow
> innych niz alfanumeryczne (przyklad dla zainteresowanych w zalaczniku)
To jest zgodne z polskimi zasadami sortowania.
shot@desaxe:~$ psql template1
Welcome to psql 7.4.8, the PostgreSQL interactive terminal.
Type: \copyright for distribution terms
\h for help with SQL commands
\? for help on internal slash commands
\g or terminate with semicolon to execute query
\q to quit
template1=# create database test;
CREATE DATABASE
template1=# \c test
You are now connected to database "test".
test=# create table test ( tekst text );
CREATE TABLE
test=# insert into test values ('Damian');
INSERT 143687 1
test=# insert into test values ('Kocyk');
INSERT 143688 1
test=# insert into test values ('[ Ja ]');
INSERT 143689 1
test=# select * from test order by tekst;
tekst
--------
Damian
[ Ja ]
Kocyk
(3 rows)
Pozdrav
-- Shot
--
Basically my philosophy on release management is that it
should be like police brutality. -- Maciej Stachowiak
========================= http://shot.pl/wycinki/ === http://shot.pl/1/125/ ===
signature.asc
Description: Digital signature
--
ubuntu-pl mailing list
ubuntu-pl@xxxxxxxxxxxxxxxx
http://lists.ubuntu.com/mailman/listinfo/ubuntu-pl
|