Option to delete, edit, copy

-1

I want to delete an item in the phpmyadmin table but it does not appear, How do I display these options? I'll leave a print below:

    
asked by anonymous 16.07.2014 / 23:29

3 answers

2

The user account you are using to access the database probably does not have permissions to edit, create, or delete.

In cPanel, go to "MySQL Database" and associate a new account with the database but this time assign all the privileges to the relation.

    
17.07.2014 / 13:35
0

PhpMyAdmin is informing you that there is no primary key in this table. It has no way to identify which fields to use to perform UPDATE, DELETE, etc.
Try setting the primary key of the table and see if you can.

    
17.07.2014 / 03:40
0

mysql needs a primary key, but currently speaking, try adding an id field in the table and mark the AI (Auto increment) so it will populate the fields with ids and will enable fields for editing (make updates, inserts ... etc)

    
21.03.2017 / 12:42