I query is a command that is used to interact with the database in this case MySQL. A query can select information from the database, add, delete, manipulate, and even change the whole database itself. It is what makes a site dynamic.
Here is a example query:
------------------------------
SELECT title FROM table WHERE tableid='1'
------------------------------
This would get the title of the table with the id 1.
|