Posts: 159
Threads: 42
Joined: Jun 2012
Reputation:
0
my question is, when and when not to use in a query the symbol ` `
and
what is the / and when and when not to use ORDER BY and the LIMIT in a query
Posts: 1,938
Threads: 16
Joined: Feb 2007
Reputation:
0
You use the accents when you are not sure if your table name or column name is a MYSQL Reserved word
ORDER BY: Sets the order of the items sorted alphabetically (so: mamoru comes before Zen in a ORDER BY ASC)
LIMIT: Limits the number of records returned (eg: SELECT * FROM users LIMIT 0,10 gets the first 10 users in the table)