I would like to know why my sql query don't return me all my row (just the first one):
SELECT *
FROM ___Projects
INNER JOIN ___Regions
ON ___Projects.REG_Id=___Regions.REG_Id
ORDER BY PRO_Id ASC
Table ___Projects:
|--------|--------|--------|
|PRO_Id  |REG_Id  |PRO_Name|
|1       |1       |Projet 1|
|2       |0       |Projet 2|
|3       |0       |Projet 3|
|--------|--------|--------|
Table ___Regions
|--------|--------|
|REG_Id  |REG_Name|
|1       |Region 1|
|2       |Region 2|
|3       |Region 3|
|--------|--------|
Thanks for your help.
 
    