Quote:
Originally Posted by powerful_rogue
Hi Dismounted,
Thanks for your reply. im still a bit confused regarding the joins so need to read up on them a bit more first. Its all the "u" and "ua" bits I dont quite get.
|
It's just shorthand so you don't have to use the full table name all the time:
PHP Code:
useractivation AS ua
That simply means that you are allowed to use the shorthand "ua" instead of "useractivation". So for instance:
PHP Code:
AND ua.emailchange = 0
is the same as:
PHP Code:
AND useractivation.emailchange = 0