在SQLite的SELECT查询中将整数转换为文本?

前端之家收集整理的这篇文章主要介绍了在SQLite的SELECT查询中将整数转换为文本?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想创建一个SELECT查询,它会以整数格式从列返回数字作为文本格式 – 我可以在sqlite中执行吗?
sqlite支持 CAST和:

Casting an INTEGER or REAL value into TEXT renders the value as if via sqlite3_snprintf() except that the resulting TEXT uses the encoding of the database connection.

所以你可以做这样的事情:

select cast(some_integer_column as text) from some_table;

或者,根据您想要做的,您可以将数字视为字符串,并让sqlite强制其认为合适的类型:

select some_int || ' pancakes' from some_table;
select some_int || '' from some_table;
原文链接:https://www.f2er.com/sqlite/197840.html

猜你在找的Sqlite相关文章