Mysql delete data via cli

From thelinuxwiki
Revision as of 22:10, 8 February 2015 by Nighthawk (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

deleting range from shell

delete user_id if greater than 2

mysql -h localhost -u root mediawikidb -e "DELETE FROM thelinuxwiki_user WHERE user_id > '2'" --password=password

the above command was used to delete everything but the admin user.

delete all transactions in gnucash

> DELETE FROM transactions WHERE guid IS NOT NULL;