Write the DML statement to query the database for the following: Output the fname, lname, total_amount_owed of the student with the highest total_amount_owed, where total_amount_owed is the sum of all unpaid bills for each student.

Respuesta :

Answer:

SET IDENTITY_INSERT jobs ON

INSERT INTO jobs  (job_id, job_desc, min_lvl, max_lvl)

VALUES (19, ’DBA2’, 100, 175)

SET IDENTITY_INSERT jobs OFF

Explanation: