Showing posts with label Answers Of Sql Select Statement Excercise. Show all posts
Showing posts with label Answers Of Sql Select Statement Excercise. Show all posts

Sunday, March 6, 2011

Answers Of Sql Select Statement Excercise


Selecting Data Answers

  1. Display everyone's first name and their age for everyone that's in table.
    select first, 
           age 
      from empinfo;
  2. Display the first name, last name, and city for everyone that's not from Payson.
    select first, 
           last, 
           city 
      from empinfo
    where city <> 
      'Payson';
  3. Display all columns for everyone that is over 40 years old.
    select * from empinfo
           where age > 40;
  4. Display the first and last names for everyone whose last name ends in an "ay".
    select first, last from empinfo
           where last LIKE '%ay';
  5. Display all columns for everyone whose first name equals "Mary".
    select * from empinfo
           where first = 'Mary';
  6. Display all columns for everyone whose first name contains "Mary".
    select * from empinfo
           where first LIKE '%Mary%';

AngularJS Basics - Part 1

                                                                  AngularJS What is AngularJS ·          Framework by googl...