name
をキャストするだけです bytea
への列
照合にとらわれない順序付けを可能にするデータ型:
SELECT name
FROM folders
ORDER BY name::bytea;
結果:
name
--------------
a test
alphanumeric
test 1
test 10
test 19
test 20
(6 rows)
name
をキャストするだけです bytea
への列
照合にとらわれない順序付けを可能にするデータ型:
SELECT name
FROM folders
ORDER BY name::bytea;
結果:
name
--------------
a test
alphanumeric
test 1
test 10
test 19
test 20
(6 rows)