I have imported an sql file into mysql which include 3 tables like this
accounts
acc_tmp
queue
then i wanted to insert values into accounts table and write this lines
insert into accounts values('Dakkar','dakkar','Dakkar Osman','','','dakkar@dakkar.com');
but it didnt work and gave this error
Column count doesnt match value count at row 1
How can i fix it?