Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.07 KB | None | 0 0
  1. +-----+---------------+----------+
  2. | id | premiere_date | duration |
  3. +-----+---------------+----------+
  4. | 432 | 2015-10-11 | 68 |
  5. | 433 | 2015-10-28 | 125 |
  6. +-----+---------------+----------+
  7.  
  8. +---------+----------------+------------+------------------------------------------+
  9. | film_id | title_language | title_type | title |
  10. +---------+----------------+------------+------------------------------------------+
  11. | 432 | en | 1 | Intouchables |
  12. | 432 | ru | 2 | 1+1 |
  13. | 433 | en | 1 | The Hunger Games |
  14. | 433 | ru | 2 | Голодные игры |
  15. | 433 | de | 2 | Die Tribute von Panem – The Hunger Games |
  16. +---------+----------------+------------+------------------------------------------+
  17.  
  18. CREATE UNIQUE INDEX films_titles_uniq
  19. ON films_titles (film_id, title_language, title_type);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement