Jump to content

Help with mysql where...


feri_soft

Recommended Posts

They are table aliases, defined in the query

FROM article [b]a[/b]
INNER JOIN categories [b]c[/b]

It makes the query easier to read than

[code]SELECT article.name, article.author, categories.cat_name
FROM article
INNER JOIN categories ON article.cat_id = categories.cat_id[/code]
Link to comment
https://forums.phpfreaks.com/topic/8282-help-with-mysql-where/#findComment-30647
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.