我很難從mysql中的視圖中選擇數據到outfile。從mysql視圖中選擇outfile
SELECT *
INTO OUTFILE '/tmp/test.txt'
FROM test_view;
,我發現了以下錯誤:
ERROR 1356 (HY000) at line 1: View 'test_view' references invalid table(s) or column(s) or function(s) or definer/invoker of view lack rights to use them
當我只使用SQL下面,它的罰款。
SELECT *
FROM test_view;
我使用的MySQL版本:69年5月1日
感謝。
錯誤消息相當自我解釋,不是嗎?你或者定義者是否有權查詢視圖中使用的所有列和表? – fancyPants