Mysql
 sql >> Base de données >  >> RDS >> Mysql

MySQL ne sélectionne pas la ligne avec l'identifiant donné

Utiliser une join standard avec le where approprié critères :

SELECT tbl_climatic.location, tbl_favourablecrops.favCrop 
FROM tbl_climatic join
     tbl_favourablecrops on tbl_climatic._id=tbl_favourablecrops.location_id
WHERE tbl_favourablecrops.location_id=0