Database
-
How to find FK constraints rule in any schema in MySQL ?
constraints rule can be ‘RESTRICT’ OR ‘SET NULL’ OR ‘CASCADE’ SELECT distinct table_name FROM information_schema .referential_constraints WHERE constraint_schema = ‘<DB… Read More
-
ACID Properties
ACID Properties ACID properties are an important concept for databases or data sharing techniques. The acronym stands for Atomicity, Consistency,… Read More
