Primary Key and Foreign Key
Primary Key and Foreign Key
Primary Key and Foreign Key
JOINS
• mysql> create table student
• -> (roll int(4) primary key,
• -> name varchar(15) not null,
• -> marks decimal(5,2),
• -> stream varchar(15));
• Query OK, 0 rows affected, 1 warning (0.79 sec)