用于查找列中匹配文本的列名称的 SQL 查询
这是我的第一个 stakoverflow 问题,尽管我已经潜伏了一段时间。我正在 PHP/SQLite 中编写一个 Web 应用程序,并且尝试查找列名以及以下 SQL 查询:
SELECT lexemeid FROM lexeme, sense WHERE lexeme.lexemeid =
sense.senselexemeid AND (lexeme.lexeme LIKE '%apani%' OR lexeme.variant
LIKE '%apani%' OR lexeme.affixedform LIKE '%apani%' OR sense.example
LIKE '%apani%');
基本上,我为几个不同的字段提供全文查找。上面的查询有效,但我想获取通配符与每个结果匹配的列的名称。基本上我想要类似上面的查询,其中 SELECT 看起来更像:
SELECT lexemeid, COLUMN NAME FROM...
我也欢迎任何让我的 SQL 查询看起来/性能更好的想法(也许使用 LIKE 和 IN?)。我基本上尝试加入 lexeme.lexemeid 和 sense.senselexemeid 并对文本字符串(在本例中为“apani”)进行通配符查找。
谢谢!
This is my first stakoverflow question, although I've lurked for quite a while. I'm writing a webapp in PHP/SQLite, and I'm trying to find a column name along with the following SQL query:
SELECT lexemeid FROM lexeme, sense WHERE lexeme.lexemeid =
sense.senselexemeid AND (lexeme.lexeme LIKE '%apani%' OR lexeme.variant
LIKE '%apani%' OR lexeme.affixedform LIKE '%apani%' OR sense.example
LIKE '%apani%');
Basically, I'm offering a full text lookup for a few different fields. The query above works, but I'd like to get the name of the column where my wildcard matches for each result as well. Basically I want something like the above query with the SELECT looking more like:
SELECT lexemeid, COLUMN NAME FROM...
I'd also welcome any ideas for making my SQL Query look/perform better (maybe using LIKE and IN??). I'm basically trying to join lexeme.lexemeid and sense.senselexemeid and do a wildcard lookup on a text string (in this case, "apani").
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您仅在其中一列中有匹配项,则可以使用 CASE 语句。
Assuming you only have a match in one of the columns, you could use a CASE statement.