jodeci
jodeci

Reputation: 996

drop table view, 1051 error

Um, I'm cleaning up old DBs through phpmyadmin, and during the process forgot to DROP a view before dropping the related tables. I'm getting the #1051 unknown table error of course -- but how do I drop the view now?

Upvotes: 3

Views: 6653

Answers (1)

Sachin Shanbhag
Sachin Shanbhag

Reputation: 55489

By using DROP VIEW syntax from mysql.

Upvotes: 5

Related Questions