Giter Site home page Giter Site logo

prime-solo-sql's Introduction

prime-solo-sql

  1. Get all users from Chicago. SELECT * FROM accounts WHERE city='chicago'

  2. Get all users with usernames that contain the letter a. SELECT * FROM accounts WHERE username ILIKE '%a%'

  3. The bank is giving a new customer bonus! Update all records with an account balance of 0.00 and a transactions_attempted of 0. Give them a new account balance of 10.00. UPDATE accounts SET account_balance=10 WHERE account_balance=0 AND transactions_attempted=0

  4. Select all users that have attempted 9 or more transactions. SELECT * FROM accounts WHERE transactions_attempted>9

  5. Get the username and account balance of the 3 users with the highest balances, sort highest to lowest balance. NOTE: Research LIMIT SELECT username, account_balance FROM accounts ORDER BY account_balance DESC LIMIT 3

  6. Get the username and account balance of the 3 users with the lowest balances, sort lowest to highest balance. SELECT username, account_balance FROM accounts ORDER BY account_balance LIMIT 3

  7. Get all users with account balances that are more than $100. SELECT username, account_balance FROM accounts WHERE account_balance>100

  8. Add a new record. INSERT INTO accounts (username, city, transactions_completed, transactions_attempted, account_balance) VALUES ('sean', 'minneapolis', 10000, 10000, 1000000000)

  9. The bank is losing money in Miami and Phoenix and needs to unload low transaction customers: Delete users that reside in miami OR phoenix and have completed fewer than 5 transactions. DELETE FROM accounts WHERE(city='miami' OR city='phoenix') AND transactions_completed<5

prime-solo-sql's People

Contributors

srz1992 avatar

Watchers

James Cloos 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.