MySQL Error: #1142 - SELECT command denied to user

后端 未结 11 1085
情话喂你
情话喂你 2020-12-01 09:04

I\'m having troubles with a certain query on one of my servers. On all other places I\'ve tested it it works completely fine but on the server i want to use it it isn\'t wor

11条回答
  •  鱼传尺愫
    2020-12-01 09:45

    I run into this problem as well, the case with me was incorrect naming . I was migrating from local server to online server. my SQL command had "database.tablename.column" structure. the name of database in online server was different. for example my code was "pet.item.name" while it needed to be "pet_app.item.name" changing database name solved my problem.

提交回复
热议问题