Git Product home page Git Product logo

dsc-filtering-and-ordering-lab-seattle-ds-102819's Introduction

Filtering and Ordering - Lab

Introduction

In this lab, you will write more SELECT statements to solidify your ability to query a SQL database. You will also write more specific queries using the tools you learned in the previous lesson.

Objectives

You will be able to:

  • Write SQL queries to filter and order results
  • Order the results of your queries by using ORDER BY (ASC & DESC)
  • Limit the number of records returned by a query using LIMIT
  • Filter results using BETWEEN and IS NULL

Famous Dogs

Here's a database full of famous dogs! The dogs table is populated with the following data:

name age gender breed temperament hungry
Snoopy 3 M beagle friendly 1
McGruff 10 M bloodhound aware 0
Scooby 6 M great dane hungry 1
Little Ann 5 F coonhound loyal 0
Pickles 13 F black lab mischievous 1
Clifford 4 M big red smiley 1
Lassie 7 F collie loving 1
Snowy 8 F fox terrier adventurous 0
NULL 4 M golden retriever playful 1

Connecting to the Database

First, import sqlite3 and establish a connection to the database dogs.db. Then, create a cursor object so that you can pass SQL queries to the database.

#Your code here; import sqlite, create a connection and then a cursor object.

Queries

Display the outputs for each of the following query descriptions.

Select the name and breed for all female dogs

#Your code here

Select the names of all dogs listed in alphabetical order. Notice that SQL lists the nameless dog first.

#Your code here

Select any dog that doesn't have a name

#Your code here

Select the name and breed of only the hungry dogs and list them from youngest to oldest

#Your code here

Select the oldest dog's name, age, and temperament

#Your code here

Select the three youngest dogs

#Your code here

Select the name and breed of the dogs who are between five and ten years old, ordered from oldest to youngest

#Your code here

Select the name, age, and hungry columns for hungry dogs between the ages of two and seven. This query should also list these dogs in alphabetical order.

#Your code here

Summary

Great work! In this lab you practiced writing more complex SQL statements to not only query specific information but also define the quantity and order of your results.

dsc-filtering-and-ordering-lab-seattle-ds-102819's People

Contributors

loredirick avatar mas16 avatar mathymitchell avatar sproulhimself avatar tkoar avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  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.