Anomalies


Things that might not be 'quite right' about your database and schema

Columns whose name and type imply a relationship to another table's primary key

Child Column Implied Parent Column
admin_mobile.[temp_user_id] session_types.[id]
educational_qualifications.[old_data_id] session_types.[id]
faq_categories.[old_data_id] session_types.[id]
faq_sub_categories.[old_data_id] session_types.[id]
phase_subject.[phase_id] session_types.[id]
phase_subject.[subject_id] session_types.[id]
phase_users.[batch_id] session_types.[id]
phase_users.[centre_id] session_types.[id]
phase_users.[phase_id] session_types.[id]
phase_users.[user_id] session_types.[id]
placement_courses.[old_data_id] session_types.[id]

Tables that contain a single column

Table Column
batches_non_ple batch_id

Tables with incrementing column names, potentially indicating denormalization

Columns whose default value is the word 'NULL' or 'null'

Table
Anomaly not detected