-
Notifications
You must be signed in to change notification settings - Fork 1
/
WMS.sql
87 lines (66 loc) · 2.07 KB
/
WMS.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
Table structure for table `tblaccount`
CREATE TABLE `tblaccount` (
`AccountId` int(11) NOT NULL AUTO_INCREMENT,
`Name` varchar(50) NOT NULL,
`Username` varchar(50) NOT NULL,
`Password` varchar(50) NOT NULL,
`Role` varchar(50) NOT NULL,
PRIMARY KEY (`AccountId`)
)
Table structure for table `tblcustomer`
CREATE TABLE `tblcustomer` (
`CustomerId` int(11) NOT NULL AUTO_INCREMENT,
`Name` varchar(50) NOT NULL,
`PhoneNo` varchar(11) NOT NULL,
PRIMARY KEY (`CustomerId`)
)
Table structure for table `tblproduct`
CREATE TABLE `tblproduct` (
`ProductId` int(11) NOT NULL AUTO_INCREMENT,
`ProductDescription` varchar(50) NOT NULL,
`ProductPrice` double NOT NULL,
`Quantity` int(11) NOT NULL,
`Total` double NOT NULL,
`SupplierName` varchar(50) NOT NULL,
PRIMARY KEY (`ProductId`)
)
Table structure for table `tblpurchasedorder`
CREATE TABLE `tblpurchasedorder` (
`OrderId` int(11) NOT NULL AUTO_INCREMENT,
`ProductDescription` varchar(50) NOT NULL,
`ProductPrice` double NOT NULL,
`Quantity` int(11) NOT NULL,
`Total` double NOT NULL,
`CustomerName` varchar(50) NOT NULL,
`Order_Date` date NOT NULL,
PRIMARY KEY (`OrderId`)
)
Table structure for table `tblreceivingentry`
CREATE TABLE `tblreceivingentry` (
`ReceivingId` int(11) NOT NULL AUTO_INCREMENT,
`ProductDescription` varchar(50) NOT NULL,
`ProductPrice` double NOT NULL,
`Quantity` int(11) NOT NULL,
`Total` double NOT NULL,
`ExpDate` date NOT NULL,
`SupplierName` varchar(50) NOT NULL,
`ReceivedDate` date NOT NULL,
PRIMARY KEY (`ReceivingId`)
)
Table structure for table `tblstock`
CREATE TABLE `tblstock` (
`StockId` int(11) NOT NULL AUTO_INCREMENT,
`ProductDescription` varchar(50) NOT NULL,
`ProductPrice` double NOT NULL,
`Quantity` int(11) NOT NULL,
`Total` double NOT NULL,
`SupplierName` varchar(50) NOT NULL,
PRIMARY KEY (`StockId`)
)
Table structure for table `tblsupplier`
CREATE TABLE `tblsupplier` (
`SupplierId` int(11) NOT NULL AUTO_INCREMENT,
`Name` varchar(50) NOT NULL,
`PhoneNo` varchar(11) NOT NULL,
PRIMARY KEY (`SupplierId`)
)