GROUP BY子句用于获取sqlite中逗号分隔的值

时间:2013-10-12 09:34:02

标签: mysql sql sqlite android-sqlite

我的表结构是这样的,使用sqlite3

           CREATE TABLE enghindi (eng TEXT,hindi TEXT)

我有一个名为 enghindi 的表,其中有两列名为 hindi eng ,我想合并eng列的记录,用逗号分隔结合印地语单词

看下面的表格看起来像

enter image description here

我想看看如下所示

enter image description here

我想用sqlite3查询

来做这件事

1 个答案:

答案 0 :(得分:16)

这应该有效:

SELECT GROUP_CONCAT(eng), hindi FROM enghindi GROUP BY hindi;