0% found this document useful (0 votes)
27 views1 page

Data Def SQL

Uploaded by

Sock the Cat
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
27 views1 page

Data Def SQL

Uploaded by

Sock the Cat
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

Name: Shylle John Reyvet S Mortera Section: BSIT 202A

CREATE DATABASE myDB;

CREATE TABLE Customers( CustomerID int NOT NULL PRIMARY KEY, FirstName
varchar(50), LastName varchar(50), Email varchar(50), Gender varchar(50), Birthdate date, );

CREATE TABLE Products( ProductID int NOT NULL PRIMARY KEY, Description
varchar(250), Quantity int, Price decimal(10, 2), VendorID int NOT NULL FOREIGN KEY, );

CREATE TABLE Vendors( VendorID int NOT NULL PRIMARY KEY, Name varchar(50),
ContactNum int, );

You might also like