SQLite 类型转换 作者:马育民 • 2024-04-22 11:09 • 阅读:10016 https://blog.csdn.net/qh0526wy/article/details/116378789 将字符串转数字 ``` SELECT CAST('3.02' as decimal) ``` 将数字转成字符串 ``` SELECT CAST( sid as text) as sid ``` 原文出处:http://malaoshi.top/show_1IX7YVpRkin8.html