our approach
|
new tutorials
|
contact us
MySQL Basics In Pictures
Starting
Administration
Tables
Queries
Security
Web
Remove a user
Type:
DELETE FROM user WHERE (user='marty' OR user='mary');
then press
ENTER
.
The command string
DELETE FROM
user deletes a record from the table
user
. Like
mysql
,
user
is a table that's included in the MySQL Server database.
WHERE (user='marty' OR user='mary')
means that a record is deleted from the table
user
WHERE
the user is '
marty
' or '
mary
'.
<< BACK
NEXT >>