Two table with same column name

admin

Administrator
Staff member
I have two mysql tables, both tables have this column called Publisert, how can I tell the difference later in my script

This is my query

SELECT P.*, A.* FROM PressPictures P, Artister A WHERE P.Artist = A.aid AND P.pid = $Pid
 
Back
Top