Summary and Review Truncated

The syntax for an SQL delete is:
DELETE FROM tablename WHERE condition.

A tablename can be specified with the database name prefixed, as databasename.tablename.

The specific error MySQL is complaining about is that it looks like you’ve lost the tablename after your databasename in the FROM clause.

See also:
http://www.w3schools.com/sql/sql_delete.asp