Forum Moderators: coopster
rank is the column in the table Ranks
You can refer to a table within the default database as tbl_name, or as db_name.tbl_name to specify a database explicitly. You can refer to a column as col_name, tbl_name.col_name, or db_name.tbl_name.col_name. You need not specify a tbl_name or db_name.tbl_name prefix for a column reference unless the reference would be ambiguous.
:)
The column name is prefaced there by the table name and this term is often called qualifying the column name, or identifier.
[dev.mysql.com...]
Additionally, SQL is a standard. The acronym stands for Structured Query Language and it is an interface language for working with relational database management systems. Sometimes the database developers will create extensions to the standard, meaning they might create functions that are a nifty little addition to make life easier. Here, the
LIMITkeyword is an extension to the standard, incorporated by two databases of which I am aware, MySQL and Postgresql.
Probably more than you cared to know, but hey, you asked ;)