i trie to get results from two tables in my sql query. But all what i got, is the smaller table. So the LEFT JOIN gives me the results from the smaller table, which holds only 5 columns. The bigger one has about 25 columns. So if i trie to set the RIGHT JOIN, no results are shown. But also i got no error from mysql, just an empty result. Also the INNER JOIN dosen't work. Heres my query:
SELECT zu.*, peps.*
  FROM audit.zusammen zu
  RIGHT JOIN  audit.pep peps
    ON zu._id_fk = peps.id
  WHERE MATCH (zu.concat_Names) AGAINST ('merkel' IN BOOLEAN MODE)
  ORDER BY zu.last_Name
 
     
    