Characteristics of MySQL:
- Database locking (MUCH easier for financial transactions)
- Consistency/security (as above, you can guarantee that, for instance, no changes happen between the time you read a bank account balance and you update it).
- Data organization/refactoring (you can have disorganized data anywhere, but MySQL is better with tables that represent "types" or "components" and then combining them into queries).
Characteristics of Cassandra:
- Speed
- Availability (data is always available, regardless of being 100% "correct")
- Optional fields (CAN be done in MySQL with meta tables etc., but it's for-free in Cassandra)
- Simpler syntax
Cassandra is key-value or document-based storage. Think about what that means. TYPICALLY I give Cassandra ONE KEY and I get back ONE DATASET. It can branch out from there, but that's the basically what's going on. It's more like accessing a static file. Sure, you can have multiple indexes, counter fields etc. but I'm making a generalization. That's where Cassandra is coming from.
MySQL and SQL is based on group/set theory -- it has a way to combine ANY relationship between two tables. It's pretty easy to take a MySQL query, make the query a "key" and the response a "value" and store it into Cassandra. That might help explain the trade-off too, MySQL allows you to always rearrange or "re-query" the your datatables and the relationships between datasets. Cassandra not so much. And know that while Cassandra might PROVIDE features to do some of this stuff, it's not what it was built for.
MongoDB and CouchDB fit somewhere in the middle of those two extremes. I think MySQL can be a bit verbose and annoying to deal with especially when dealing with optional fields, and migrations if you don't have a good model or tools. Also with scalability, I'm sure there are great technologies for scaling a MySQL database, but Cassandra will always scale, and easily, due to limitations on its feature set. While MySQL is a bit more unbounded.
Also note that you can cache MySQL queries in a key-value store, using Cassandra but also something more like MemcacheD.