SELECT data FROM two tables in MySQL

后端 未结 3 2177
孤城傲影
孤城傲影 2021-02-08 10:36

What I have: The next structure:

table_zero
-> id (PRIMARY with auto increment)
-> other

3条回答
  •  逝去的感伤
    2021-02-08 11:16

    SELECT table_zero.id, table_1.varchar_field, table_2.varchar_field
    FROM table_zero
      LEFT JOIN table_1 ON table_zero.id = table_1.id
      LEFT JOIN table_2 ON table_zero.id = table_2.id
    WHERE table_1.varchar_field LIKE '%str%'
      OR table_2.varchar_field LIKE '%str%'
    

提交回复
热议问题