Nenne für folgende natürlichsprachliche Frage eine geeignete SQL-Anfrage und führe sie auf den Daten der IMDb aus. Gib die Anfrage und deren Ergebnis an.

Gib alle Schauspieler an, die auch in Filmen des Genres "Action" spielen und deren Name mit "T" beginnt.

Solution
  • select name as 'Name'
    from actors
    join genres on actors.movie_id = genres.movie_id
    where genres.genre = 'Action'
    and actors.name like 'T%'
    Row Name
    1 Thome, Keath
    2 Tokmakchiev, Toncho
    3 Thomas, Dean Milor
    4 Thompson, Brian (I)
    5 Thompson, James Brewster
    6 Thunderwolf
    7 Tucker, Marcellus
    8 Thring, Frank (I)
    9 Tilley, Colin (I)
    10 Tertzarian, Krikor
  • URL:
  • Language: Deutsch
  • Subjects: Databases
  • Type: Name
  • Duration: 10min
  • Credits: 3
  • Difficulty: 0.3
  • Tags: sql query
  • Note:
    HPI, 2015-06-01, Datenbanksysteme 1, Aufgabe 3.2a
  • Created By: adius
  • Created At:
    2015-07-27 07:34:37 UTC
  • Last Modified:
    2015-07-27 07:34:37 UTC