How To Deal With MySQL Ignoring Query To Other Database?

Asked By 0 points N/A Posted on -
qa-featured

I am using MySQL to execute SQL queries to obtain data from multiple databases and I am continually getting this error MySQL ignoring query to other database. How to prevent this error?

SHARE
Answered By 850 points N/A #90425

How To Deal With MySQL Ignoring Query To Other Database?

qa-featured

This is a very common error and all you need to do is add a suffix to the MySQL statement of -u to the statement. That is if your statement is in the format of #mysql-root -p then you should only change it to #mysql -u -root -p and the error will be totally rectified.

Related Questions