insert command denied in mysql

后端 未结 7 1046
天涯浪人
天涯浪人 2021-01-17 07:41

I have a database table from which, when I select data with username and password, it works but when I insert some data in that table with same username and password it show

7条回答
  •  一向
    一向 (楼主)
    2021-01-17 08:15

    I just had the same issue.

    Our hosted mysql provider removed the insert permission when the max db volume was reached.

    Using the

    SHOW GRANTS;
    

    command (mentioned in answer above) in mysql helped me figure this out.

    We used JAWS DB MYSQL, but other hosted mysql providers may use the same method.

提交回复
热议问题