這是我沒有當前語句加入如何加入4代MySQL表在一個聲明中
$s1 = "SELECT *
FROM states
WHERE
statecode='".intval($getStateCode)."'
";
$s2 = "SELECT *
FROM county
WHERE
statecode='".intval($getStateCode)."'
AND
countycode='".intval($getCountyCode)."'
";
$s3 = "SELECT *
FROM town
WHERE
statecode='".intval($getStateCode)."'
AND
countycode='".intval($getCountyCode)."'
AND
towncode='".intval($getTownCode)."'";
$s4 = "SELECT *
FROM villages
WHERE
statecode='".intval($getStateCode)."'
AND
countycode='".intval($getCountyCode)."'
AND
towncode='".intval($getTownCode)."'
AND
villagecode='".intval($getVillageCode)."'";
有可能參加所有我的表在一個聲明?讓我知道。
你擔心失去信息?你想要那些沒有村莊的州嗎? 你在找什麼?所有的村莊和他們的城鎮,縣和州的信息? 這可以完成,但你會有很多重複的數據。 – Virmundi