create table Supplier(Supplier_ID int, Supplier_Name varchar(255), Contact_Name varchar(255));
insert into Supplier(Supplier_ID, Supplier_Name, Contact_Name)values(13,"rexon","Rex");
insert into Supplier(Supplier_ID, Supplier_Name, Contact_Name)values(14,"rexon","Rex");
insert into Supplier(Supplier_ID, Supplier_Name, Contact_Name)values(15,"rexon","Rex");
select * from Supplier;
create table Products(ProductID int not null primary key,Supplier_ID int Foreign Key References(Supplier_ID));

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: