如何在具有不同列的 Sqlite 数据库中用逗号匹配值,并再次用逗号匹配 return

How to match value with comma in Sqlite Database with different column and return again with comma

我的数据库像这里一样包含三列

code      name           details
nd      new dear        sdadasd
dn      no dear         fdsfdsf
bs      bhai sahab      vdfgdfgdfg

现在我有了像

这样的逗号的值

"nd, new dear"

如何匹配数据库中的不同列以及如何从数据库中获取相同的值

"nd, new dear"

请提出查询。

SELECT code || ', ' || details AS val
FROM mytable 
WHERE code || ', ' || details = 'nd, new dear'