0
我在一個綁定位:我只能使用sqlite 3.4.2 w/php5-sqlite(Ubuntu的哈代),我有一些複雜的查詢使用group_concat ()函數。sqlite group_concat沒有group_concat
現在,這個函數在sqlite的3.4.2版本中不被支持,而且我不能改變查詢使用group_concat()。
那麼,它甚至有可能嗎?
下例:
delete from table x where (select group_concat(id) || ',' from users where department_id = NEW.id) like '%' || x.id || ',%';