English 中文(简体)
用户无法执行选中的错误 1142
原标题:User cannot execute select error 1142

我的phpmyadmin 或 MySQL 命令不让我执行以下查询 :

SELEC 中 CT customer.First, customer.Last, login.Username, login.Password, customer.Addrln1,
    customer.Addrln2, customer.Postcode, customer.C 中 County, customer.C 中 Country, customer.Phone, customer.Email, 
    employee.EmpFirst, employee.EmpEmail, move.MoveID, move.C 中 CityOrig, move.C 中 CityDest, move.C 中 CountryOrig, 
    move.C 中 CountryDest, move.EnquiryDate, move.Surveydate, move.QuoteDate, move.DepEst, move.DepAct, move.ArrEst, move.ArrAct,
    move.C 中 ClearEst, move.C 中 ClearAct, move.DelEst, move.DelAct, move.Port, move.Method, move.Status
FROM customer
LEFT JOIN oim2.login ON customer.C 中 CustID = login.C 中 CustID
LEFT JOIN oim2.move ON customer.C 中 CustID = move.C 中 CustID
LEFT JOIN oim2.employee ON move.EmpID = employee.EmpID
WHERE customer.First =   dave  and customer.Last= smith 

1142 - SELEC 中 CT command denied to user oceanai3 @ localhost for table login

Dave smith is just an example first and last name, the user can perform the following queries: SELEC 中 CT * from login SELEC 中 CT * FROM move SELEC 中 CT * FROM customer

If I remove the references to login out of the original query I then get the error #1142 - SELEC 中 CT command denied to user oceanai3 @ localhost for table move . I have pastebin d the full sql file of the db and it can be found here at: http://pastebin.com/H6aTS74m I have trawled through a lot of other peoples posts to find an answer but I couldnt find anything that helped me.

谢谢 谢谢

C 中 C

最佳回答
GRANT SELECT ON database.* TO user@ localhost  IDENTIFIED BY  password ;

用您的值替换占位符。

问题回答

我想,也许吉文斯 张贴:

GRANT SELECT ON database.* TO user@ localhost  IDENTIFIED BY  password ;

may 需要用户周围的单引号, 如 :

GRANT SELECT ON database.* TO  user @ localhost  IDENTIFIED BY  password ;

至少对我有用,但我用了phpMyAdmin 3.5.2.2.2。不过,如果这能帮助某人,那才是最重要的:





相关问题
SQL SubQuery getting particular column

I noticed that there were some threads with similar questions, and I did look through them but did not really get a convincing answer. Here s my question: The subquery below returns a Table with 3 ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

php return a specific row from query

Is it possible in php to return a specific row of data from a mysql query? None of the fetch statements that I ve found return a 2 dimensional array to access specific rows. I want to be able to ...

Character Encodings in PHP and MySQL

Our website was developed with a meta tag set to... <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> This works fine for M-dashes and special quotes, etc. However, I ...

Pagination Strategies for Complex (slow) Datasets

What are some of the strategies being used for pagination of data sets that involve complex queries? count(*) takes ~1.5 sec so we don t want to hit the DB for every page view. Currently there are ~...

Averaging a total in mySQL

My table looks like person_id | car_id | miles ------------------------------ 1 | 1 | 100 1 | 2 | 200 2 | 3 | 1000 2 | 4 | 500 I need to ...

热门标签