mysql - mysqldump with --where clause is not working -


  mysqldump -t -u रूट-पी mytestdb mytable --where = '2014-09%' जैसे दिनांक समय ' / Code>  

यह वही है जो मैं करता हूं और यह देता है:

  mysqldump: तालिका नहीं मिल सका: "पसंद"   < P> मैं सभी पंक्तियों को वापस करने की कोशिश कर रहा हूं जहां कॉलम  datetime  है <2014> जैसा कि 2014-09  जिसका अर्थ है "सभी सितंबर पंक्तियां"।   

आपको उद्धरणों का उपयोग करने की आवश्यकता हो सकती है:

  mysqldump -t -u root -p mytestdb mytable - where = "तिथि समय जैसी '2014-09%' '   

Comments

Popular posts from this blog

php - PDO bindParam() fatal error -

logging - How can I log both the Request.InputStream and Response.OutputStream traffic in my ASP.NET MVC3 Application for specific Actions? -

java - Why my included JSP file won't get processed correctly? -