sqlite3 字符串分割
sqlite字符串分割处理函数 : substr(string str,num start,num length)@param str : 需要处理的字符串@param start: 开始位置@param length: 长度 (该值可不填, 默认到字符串结尾)sqlite> select ip from l3intf;12.1.3.3/24sqlite>sqlite> select substr(ip,1,4) from l3intf;12.1sqlite> s
原创
2022-02-28 11:47:25 ·
5645 阅读 ·
0 评论