在pycharm中執行
select * from value in(1,2);
會提醒:
No statement found under the caret. Execute all statements in the file or just the ones after the cursor?
表示in后面的條件被當做語句,執行出錯
解決:
select * from find_in_set(value, '1,2');
在pycharm中執行
select * from value in(1,2);
會提醒:
No statement found under the caret. Execute all statements in the file or just the ones after the cursor?
表示in后面的條件被當做語句,執行出錯
解決:
select * from find_in_set(value, '1,2');
本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。