Code Monkey home page Code Monkey logo

java-challenges's Introduction

JAVA-Challenges

SQL

image

Queries

SHOW TABLES : Para mostrar las tablas de la RDBMS

DROP TABLE IF EXISTS tabla_name : Para BORRAR la tabla de la BBDD.

INSERT: Allows you to create new data rows.

  • INSERT INTO tabla_name (id, app_name, app_size, price, total_ratings, genre) VALUES (281656475, "PAC-MAN Premium", 100788224, 3.99, 4.5, "Games");

UPDATE: Allows you to update an existing data row.

  • UPDATE rating SET price = 0 WHERE id = 281656475;

DELETE: Allows you to remove an existing data row.

  • DELETE FROM rating WHERE id=281656475;

Querying Data

SELECT: Allows you to query data from a table

  • SELECT * FROM rating; //we want all of the data in our table
  • SELECT app_name, total_ratings, genre FROM rating;
  • SELECT app_name, total_ratings, genre FROM rating WHERE genre = "Games";
  • SELECT app_name, total_ratings, genre FROM rating WHERE genre = "Games" AND total_ratings > 4;

Aggregation Functions

Aggregate functions allow you to turn multiple rows into a single value using some sort of calculation.

COUNT: counts rows in a specified table or view.

  • SELECT genre, COUNT(*) FROM rating;

AVERAGE: calculates the average of a set of values.

  • SELECT genre, AVG(price), AVG(total_ratings) FROM rating;

SQL Aggregate Functions

Grouping

GROUP BY: Allows you to group rows where values of a column are the same.

  • SELECT genre, COUNT(*) FROM rating GROUP BY genre;
  • SELECT genre, AVG(price), AVG(total_ratings) FROM rating GROUP BY genre;

SQL GROUP BY

java-challenges's People

Contributors

ferranpg avatar

Watchers

 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.