our approach
|
contact us
MySQL Basics In Pictures
Starting
Administration
Tables
Queries
Security
Web
Run a query
Type:
SELECT * FROM name;
then press
ENTER
.
The window should look like this:
The
SELECT
command tells MySQL to perform a query.
The asterisk (
*
) command tells MySQL to return everything (the asterisk means "everything" or "all") that's in the table
name
.
<< BACK
NEXT >>