[ACCEPTED]-How to display blob value using x'abc' binary string literal syntax?-sqlite
Accepted answer
select quote(uid) from blobs
returns:
X'0123456789ABCDEF0123456789ABCDEF'
and if you really need it in lowercase, you 1 can use:
select lower(quote(uid)) from blobs
Source:
stackoverflow.com
More Related questions
Cookie Warning
We use cookies to improve the performance of the site. By staying on our site, you agree to the terms of use of cookies.