Hacker News new | ask | show | jobs
by denzil_correa 2824 days ago
> Is a given blockchain a more efficient database?

One property of a database that may not exist on blockchain is deletion of records. You can not delete "records" on blockchain due to its immutable property.

1 comments

Though, for the sake of argument, even in SQL databases people are increasingly moving toward append-only tables where you never physically update or delete existing records, you just insert a new one that supersedes the old one. The same approach would work for a blockchain.