logo

Assignment on Database Management System 1

   

Added on  2022-10-02

5 Pages335 Words17 Views
Running head: DATABASE MANAGEMENT SYSTEM
Database Management System
Name of the Author
Name of the University
Author Note

DATABASE MANAGEMENT SYSTEM
1
1. Show sums of line units for each invoice.
select inv_number, sum(line_units) as total from line group by inv_number;
2. Show the details of the products that do not have a value for the attribute v_code.
select * from product where v_code='';
3. Show the details of the invoices whose subtotal is greater than 24 but less than 76.
select * from invoice where inv_subtotal<76 and inv_subtotal>24;

End of preview

Want to access all the pages? Upload your documents or become a member.

Related Documents
Database System Assignment 2022
|5
|172
|17

SQL Queries for Database Management
|5
|552
|301

SQL Queries for a Sample Database
|6
|512
|240

SQL QUERIES Name of the University Author Note
|6
|230
|431

Database Systems
|10
|1134
|495

Database Systems
|10
|1134
|410