1.
CREATE TABLE IF NOT EXISTS `tblstudent` (
`ID` int(250) NOT NULL AUTO_INCREMENT,
`admissionNumber` float NOT NULL,
`studentName` varchar(250) NOT NULL,
PRIMARY KEY (`ID`)
)
CREATE TABLE IF NOT EXISTS `tbltransaction` (
`ID` bigint(255) NOT NULL AUTO_INCREMENT,
`transactionTypeID` varchar(250) NOT NULL,
`studentID` int(250) NOT NULL,
`date` datetime NOT NULL,
`amount` float NOT NULL,
`balance` double NOT NULL,
PRIMARY KEY (`ID`)
)
2.
It is not needed