mysqldump with --where clause is not working mysqldump -t -u root -p mytestdb mytable --where=datetime LIKE '2014-09%' This is what I am doing and it returns: mysqldump: Couldn't find table: "LIKE" 열이 있는 모든 행을 반환하려고 합니다.datetime가like 2014-09"9월의 모든 행"을 의미합니다.You may need to use quotes: mysqldump -t -u root -p mytestdb mytable --where="datetime LIKE '2014-09%'" Selecting dates using LIKE is not a..