Thursday, September 8, 2022

How to run mysql from the command line on mac?

/Applications/AMPPS/mysql/bin/mysql -u root -pmysql

No comments:

Post a Comment

SQL to delete all WooCommerce products except those with "draft" status

 -- Disable foreign key checks (important for InnoDB) SET     FOREIGN_KEY_CHECKS = 0;     -- Delete product meta DELETE     pm FROM     wp_p...