sqite3使用踩坑经历

 

sqlite3 中

拼接字段可以使用 || 操作符。相当于其他数据库系统中的 CONCAT() 函数。SELECT first_name || ' ' || last_name AS full_name FROM users;

没有collect_set(),  替代函数:  group_concat(distinct)

 

SQLite 开发团队于 2023 年 11 月 01 日发布了 SQLite 3.44.0 版本  ,新版本增加了两个连接字符串的函数:concat() 以及 concat_ws()

 

posted on 2024-06-13 11:31  andy_1  阅读(1)  评论(0编辑  收藏  举报

导航