lo,
i have a table called properties and i am running this select statement:
$querykk = 'SELECT `RecordID`,`Ref_Num`,`Main_Image_Path`,`County` FROM properties'
. ' where county = "kilkenny"'
. ' ORDER BY Date_Registered DESC'
. ' LIMIT 1'
. ' ';
and i want to do this for a number of counties ie. dublin, cork, limerick... so my question is can i have multiple selects from the same table? then write the results to a table?
Thanks
Richie