Conceptual — high-level entities. Logical — detailed attributes. Physical — actual implementation.
Conceptual Model:
Conceptual: Customer → places → Order → contains → Product
Logical Model:
Logical: Customer(id, name, email) 1:M Order(order_id, date, total)
Physical Model:
Physical: CREATE TABLE customers (
id SERIAL PRIMARY KEY,
name VARCHAR(100) NOT NULL
);
Progression: Conceptual → Logical → Physical.