English 中文(简体)
MySQL:如果表A中的具体领域不是空洞的话,加入两个表格/阅读表B中具体行的所有数据
原标题:MySQL: Joining two tables / Read all data from specific row in table B if specific field in table A is not empty

https://i.stack.imgur.com/ZRH9c.jpg (请见数据库结构实例图)

至今

我试图在两张表格中打字,这两张表格开始用具体信函,我不知道如何加入。

www.un.org/spanish/ecosoc 如果NOT在“用户_vocabulary”中给出了一种真心的字眼,我想从用户_vocabulary中删除这一词,但如果存在一种真心_,我想读到“系统_vocabulary”WHERE用户_vocabulary.voc_id=system.vocabulary.id .的所有数据。

This I use to just read one table (just for your information): SELECT * FROM user_vocabulary WHERE word LIKE $user_input% ORDER BY word ASC

我发现一些类似员额,但似乎无法将这些员额转为这一问题。

Any help is much appreciated. cheers Tom

最佳回答

页: 1 您可使用<代码>IF功能:

SELECT
  uv.id,
  IF(uv.voc_id = 0,uv.word,sv.word) AS WORD
FROM user_vocabulary uv
LEFT JOIN system_vocabulary sv
ON (uv.voc_id = sv.id)
HAVING word LIKE  %user_input% 

+------+-------+
| id   | word  |
+------+-------+
|    1 | hat   |
|    2 | home  |
|    3 | hello |
+------+-------+
3 rows in set (0.00 sec)
问题回答

引言

SELECT *
FROM user_vocabulary
left join system_vocabulary
on system_vocabulary.voc_id = user_vocabulary.id
WHERE user_vocabulary.word LIKE  %$user_input%  or system_vocabulary.word like      %$user_input% 
ORDER BY word ASC

EDITED

另一种方式

SELECT *
FROM user_vocabulary as uv
, system_vocabulary as sv
WHERE uv.word LIKE  %$user_input% 
or sv.word like  %$user_input% 

根据您的要求开展工作:

SELECT user_vocabulary.id,
   COALESCE(system_vocabulary.word, user_vocabulary.word) word
FROM user_vocabulary
LEFT JOIN system_vocabulary
   ON system_vocabulary.id = voc_id AND voc_id <> 0




相关问题
SQL SubQuery getting particular column

I noticed that there were some threads with similar questions, and I did look through them but did not really get a convincing answer. Here s my question: The subquery below returns a Table with 3 ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

php return a specific row from query

Is it possible in php to return a specific row of data from a mysql query? None of the fetch statements that I ve found return a 2 dimensional array to access specific rows. I want to be able to ...

Character Encodings in PHP and MySQL

Our website was developed with a meta tag set to... <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> This works fine for M-dashes and special quotes, etc. However, I ...

Pagination Strategies for Complex (slow) Datasets

What are some of the strategies being used for pagination of data sets that involve complex queries? count(*) takes ~1.5 sec so we don t want to hit the DB for every page view. Currently there are ~...

Averaging a total in mySQL

My table looks like person_id | car_id | miles ------------------------------ 1 | 1 | 100 1 | 2 | 200 2 | 3 | 1000 2 | 4 | 500 I need to ...

热门标签