Three Level Architecture of DBMS
Three Level Architecture of DBMS
Physical data
organization Database
CONCEPTUAL LEVEL
PHYSICAL LEVEL
struct STAFF {
int Staff_No;
int Branch_No;
char FName[15];
Internal level char LName[15];
struct date Date_of_Birth;
float Salary;
struct STAFF*next;
};
index Staff_No; index Branch_No;