mysqldump -t -u root -p mytestdb mytable --where=datetime LIKE '2014-09%'
这就是我正在做的事情,它返回:
mysqldump: Couldn't find table: "LIKE"
我试图返回所有在列的行datetime中like 2014-09的意思是“整个9月行”。
datetime
like 2014-09
您可能需要使用引号:
mysqldump -t -u root -p mytestdb mytable --where="datetime LIKE '2014-09%'"