Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ORDER BYステートメントでchar(160)をchar(20)に置き換えたいのですが、
ORDER BY REPLACE(column,CHAR(160),CHAR(20))
CHAR()が不明であるため、例外をスローします。SQLITEでASCIIコードをキャストするにはどうすればよいですか?
ORDER BY REPLACE(column, CAST(X'A0' AS TEXT), CAST(X'14' AS TEXT))
A0および14は16進形式です
A0
14