Difference between revisions of "Select Queries"
Line 3: | Line 3: | ||
* Allows selection from multiple tables but not multiple databases. | * Allows selection from multiple tables but not multiple databases. | ||
− | + | <syntaxhighlight lang=sql> | |
+ | SELECT `data` FROM `TABLE`; | ||
+ | </syntaxhighlight> |
Revision as of 15:41, 15 December 2016
- Used for fetching information from an SQL database.
- 'Outputs' the data once successfully selected
- Allows selection from multiple tables but not multiple databases.
SELECT `data` FROM `TABLE`;