I used DROP ecommerce
.users
; but it shows error #1064. Kindly help.
Asked
Active
Viewed 67 times
1

Bill Karwin
- 538,548
- 86
- 673
- 828

Shriya S
- 37
- 4
-
2Does this answer your question? [How can I fix MySQL error #1064?](https://stackoverflow.com/questions/23515347/how-can-i-fix-mysql-error-1064) – hppycoder Mar 15 '21 at 15:31
1 Answers
0
I think you want to use:
DROP TABLE `ecommerce`.`users`;
Just DROP
by itself is ambiguous. There are several different types of things you can drop in a MySQL database. Tables, indexes, triggers, views, procedures, or even a schema. You have to be specific. The word TABLE
is necessary.

Bill Karwin
- 538,548
- 86
- 673
- 828