Answer to Question #238107 in HTML/JavaScript Web Application for Owen

Question #238107

3.3 Create another table called student_info in database rgi_student that stores below information:

 STD_BALANCE (INTERGER)

 DUE_DATE (DATE)

 ATTENDANCE (INTERGER)

NB. Use student_reg table to retrieve studentID, firstname and display as in the table above then also use student_fees table to retrieve balance and its due. Return button takes the student back to the home page.


1
Expert's answer
2021-09-21T06:54:19-0400
CREATE TABLE student_info (
  student_id integer NOT NULL,
  std_balance integer NOT NULL,
  due_date data NOT NULL,
  attendance integer NOT NULL
  FOREIGN KEY (student_id) REFERENCE student_reg (student_id),
  PRIMARY KEY (student_id)
);

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS