0

I have a table newsletter and I want to delete/update/insert data in it, but when I type

delete * from crm_base.newsletter 

for example, it gets an red "X" in the line and gives me the following error message:

Error Code: 1064. You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '* from crm_base.newsletter_temp' at line 1. 

I already unchecked the safe update mode in preferences and resetted workbench, but it still gives me the same error. Can anyone help me?

2 Answers 2

3
delete from crm_base.newsletter 
Sign up to request clarification or add additional context in comments.

Comments

2

Your syntax is not correct, use DELETE FROM crm_base.newsletter WHERE condition. Check the Delete syntax reference.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.