Git Product home page Git Product logo

java-filmorate-group's Introduction

java-filmorate

Template repository for Filmorate project.

Схема базы данных

Примеры запросов:

-- Запрос на получение всех имеющихся пользователей в БД
SELECT *
FROM filmorate.user
-- Запрос на получение всех имеющихся фильмов в БД
SELECT
    f.id,
    f.title,
    f.description,
    f.release_date,
    f.duration,
    r.title AS rating
FROM filmorate.film AS f
JOIN filmorate.rating AS r ON f.rating = r.id;
-- Запрос на получение 5 наиболее популярных фильмов имеющихся в БД
SELECT 
	f.id,
	f.title,
	f.description,
	f.release_date,
	f.duration,
	r.title,
	COUNT(l.user_id) AS likes
FROM filmorate.film AS f
JOIN filmorate.rating AS r ON f.rating = r.id
JOIN filmorate.like AS l ON f.id = l.film_id
GROUP BY f.id, r.title
ORDER BY likes DESC
LIMIT 5;
-- Запрос на получение общих друзей пользователя id = 1 с другом id = 3
SELECT 
	f.friend_two AS friend_id,
	u.name
FROM filmorate.friend AS f
JOIN filmorate.user AS u ON f.friend_two = u.id
WHERE f.confirmed
	AND f.friend_one = 1
	OR f.friend_one = 3
GROUP BY friend_id, u.name
HAVING COUNT(f.friend_two) = 2

java-filmorate-group's People

Contributors

egolubyh avatar 89219339769 avatar rylskikhi avatar sergeygray avatar mchenchak avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.