What is ACID? Definition and explanations
ACID names the four properties a database transaction must respect: atomicity (all of it happens or none of it does), consistency (schema rules stay true), isolation (concurrent transactions do not corrupt each other) and durability (once committed, the write survives a crash). This is what makes a bank transfer or an order reliable.
In one sentence
ACID is the set of four guarantees that make a database transaction reliable.