I would like to create a SELECT query that would return numbers from column in integer
format as a text
format - can I do it in SQLite?
相关问题
- SQL join to get the cartesian product of 2 columns
- sql execution latency when assign to a variable
- Difference between Types.INTEGER and Types.NULL in
- php PDO::FETCH_ASSOC doesnt detect select after ba
- Bulk update SQL Server C#
SQLite supports CAST and:
So you can do things like this:
Or, depending on what you're trying to do, you could just treat the numbers as strings and let SQLite coerce the types as it sees fit: