1 / 9

CSCI 4333 Database Design and Implementation – Exercise (2)

CSCI 4333 Database Design and Implementation – Exercise (2). Xiang Lian The University of Texas – Pan American Edinburg, TX 78539 lianx@utpa.edu. Relational Algebra and SQL (1). Find ids of sailors who’ve reserved boat with bid 103 Sailors ( sid , sname ) Reserves ( sid , bid, date )

levana
Télécharger la présentation

CSCI 4333 Database Design and Implementation – Exercise (2)

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. CSCI 4333 Database Design and Implementation – Exercise (2) Xiang Lian The University of Texas – Pan American Edinburg, TX 78539 lianx@utpa.edu

  2. Relational Algebra and SQL (1) • Find ids of sailors who’ve reserved boat with bid 103 • Sailors (sid, sname) • Reserves (sid, bid, date) • Boats (bid, bname, color) 1. Relational algebra (s and p): 2. SQL:

  3. Relational Algebra and SQL (2) • Find the names of sailors who’ve reserved boat with bid 103 • Sailors (sid, sname) • Reserves (sid, bid, date) • Boats (bid, bname, color) 1. Relational algebra (s and p): 2. SQL:

  4. Relational Algebra and SQL (3) • Find the names of sailors who’ve reserved a red boat • Sailors (sid, sname) • Reserves (sid, bid, date) • Boats (bid, bname, color) 1. Relational algebra (s and p): 2. SQL:

  5. Relational Algebra and SQL (4) • Find the names of sailors who’ve reserved a red or a green boat • Sailors (sid, sname) • Reserves (sid, bid, date) • Boats (bid, bname, color) 1. Relational algebra (s and p): 2. SQL:

  6. Relational Algebra and SQL (5) • Find the names of sailors who’ve reserved a red and a green boat • Sailors (sid, sname) • Reserves (sid, bid, date) • Boats (bid, bname, color) 1. Relational algebra (s and p): 2. SQL:

  7. Relational Algebra and SQL (6) • Find the ids of sailors who have made at least two reservations on the same date • Sailors (sid, sname) • Reserves (sid, bid, date) • Boats (bid, bname, color) 1. Relational algebra (s and p): 2. SQL:

  8. Relational Algebra and SQL (7) • 1. Find the ids of sailors who’ve reserved allboats • 2. Find the ids of sailors who’ve reserved allred boats • 3. Find the names of sailors who’ve reserved allred boats • Sailors (sid, sname) • Reserves (sid, bid, date) • Boats (bid, bname, color) 1. Relational algebra (s and p): 2. SQL:

More Related