cmd - MySQL DESCRIBE INTO OUTFILE with windows command-prompt -
i want print structure of table fomr database.
use mysql command:
describe products;
but how output txt file? like:
describe products; > products.txt
mysql -u username -p -e 'describe databasename.tablename' > output.txt
Comments
Post a Comment