Mysql Query z dwiema tabelami php

Zastanawiałem się, jak zrobić zapytanie z dwiema tabelami w php?

Mam jedno zapytanie

?php 
$sQuery = "Select * From tb_columnas Where col_Status='activo' Order by col_ID DESC";
$result = mysql_query($sQuery, $cnxMySQL) or die(mysql_error());
$rows_result = mysql_fetch_assoc($result);
$total_rows_result = mysql_num_rows($result);

if ($total_rows_result > 0){
    do {
            $id_columnas = $rows_result ['col_ID'];
            $col_Titulo = $rows_result ['col_Titulo'];
            $col_Resumen = $rows_result ['col_Resumen'];
            $col_Fecha = $rows_result ['col_Fecha'];
            $col_Autor = $rows_result ['col_Autor'];
        ?>

Ale chciałbym porównać col_Autor z au_Nombre, który znajduje się w innej tabeli (tb_autores) i pobrać z niego au_Photo i inne wartości, jak mogę to zrobić?

questionAnswers(4)

yourAnswerToTheQuestion