Linux命令列成功登入mysql,執行指令報 Ignoring query to other database。
[mysql@bjdev01 ~]$ mysql -Uroot -p Enter password: mysql> select now();
Ignoring query to other database
mysql> exit Bye
退出後重新登錄,正常。
[mysql@bjdev01 ~]$ mysql -uroot -pEnter password: mysql> select now(); +---------------------+ | now() | +---------------------+ | 2014-01-27 10:29:47 | +---------------------+ 1 row in set (0.00 sec)
比較兩次登入指令:
第一次登入: mysql -Uroot -p
第二次登入: mysql -uroot -p
#
發現使用的參數一個是大寫U,一個是小寫u,而這兩個參數的意義是不一樣的。
查看了mysql的幫助,發現小寫u和大寫U代表不同的含義
[mysql@bjdev01 ~]$ mysql --help| egrep 'user|safe-updates' -u, --user=name User for login if not current user. -U, --safe-updates Only allow UPDATE and DELETE that uses keys. -U, --i-am-a-dummy Synonym for option --safe-updates, -U. --select-limit=# Automatic limit for SELECT when using --safe-updates. --safe-updates. user (No default value) safe-updates FALSE
如果加-U 登入mysql,則對資料的更新和刪除一定要加條件。
以上是MySQL之-Ignoring query to other database的解決方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!