Perl
  Home arrow Perl arrow SELECT Queries and Perl
Dev Shed Forums  
Administration  
AJAX  
Apache  
BrainDump  
DHTML  
Flash  
Java  
JavaScript  
Multimedia  
MySQL  
Oracle  
Perl  
PHP  
Practices  
Python  
Reviews  
Security  
Smartphone Development  
Style-Sheets  
Web Services  
XML  
Zend  
Zope  
Mobile Linux  
App Generation ROI  
IBM® developerWorks  
Forums Sitemap  
E-Commerce Hosting  
Linux Web Hosting  
Managed Hosting  
Small Business Hosting  
VPS Hosting  
Weekly Newsletter

 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid  
Request Media Kit
Contact Us  
Site Map  
Privacy Policy  
Support  
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
Google.com  
PERL

SELECT Queries and Perl
By: Apress Publishing
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: starstarstarstarstar / 5
    2008-03-27


    Table of Contents:
  • SELECT Queries and Perl
  • The ORDER BY Clause
  • More Complicated SELECTs
  • Introduction to DBI

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      error-file:tidyout.log Del.ici.ous error-file:tidyout.log Digg
      error-file:tidyout.log Blink error-file:tidyout.log Simpy
      error-file:tidyout.log Google error-file:tidyout.log Spurl
      error-file:tidyout.log Y! MyWeb error-file:tidyout.log Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article

     
     
    ADVERTISEMENT


    SELECT Queries and Perl
    ( Page 1 of 4 )

    In this third part of a four-part series on Perl and DBI, you will learn about using SELECT queries to get information from databases. This article is excerpted from chapter 15 of the book Beginning Perl (Apress; ISBN: 159059391X).

    The WHERE Clause

    So far, all of our SELECT queries have shown every row in the table. Oftentimes we want only specific rows. The WHERE clause tells the SELECT query to show only the rows that match our criteria. For instance, we may want to see all the information in the musicians table for the musician with player_id having the value 1.

    mysql> SELECT * FROM musicians WHERE player_id = 1;
    +-----------+--------------+----------+
    | player_id | name         | phone    |
    +-----------+--------------+----------+
    |         1 | Roger Waters | 555-1212 |
    +-----------+--------------+----------+
    1 row in set (0.00 sec)

    Or, how about selecting only the name of the musician with player_id 1.

    mysql> SELECT name FROM musicians WHERE player_id = 1;
    +--------------+
    | name         |
    +--------------+
    | Roger Waters |
    +--------------+
    1 row in set (0.00 sec)

    Here’s how to grab Thom Yorke’s phone number:

    mysql> SELECT phone FROM musicians WHERE name = "Thom Yorke";
    +----------+
    | phone    |
    +----------+
    | 555-4545 |
    +----------+
    1 row in set (0.00 sec)

    Maybe we are interested in all instruments with difficulties of 8 or higher:

    mysql> SELECT instrument FROM instruments WHERE difficulty >= 8;
    +------------+
    | instrument |
    +------------+
    | bagpipes   |
    | oboe       |
    | harp       |
    +------------+
    3 rows in set (0.00 sec)

    Or the easiest instruments:

    mysql> SELECT instrument FROM instruments WHERE difficulty <= 2;
    +--------------+
    | instrument   |
    +--------------+
    | keyboards    |
    | drums        |
    | conductor    |
    +--------------+
    3 rows in set (0.00 sec)

    More than one condition can be combined. Here is a SELECT query that returns all the percussion instruments with a difficulty less than or equal to 3:

    mysql> SELECT instrument FROM instruments

       ->   WHERE type = "percussion" AND difficulty <= 3;
    +------------+
    | instrument |
    +------------+
    | drums      |
    +------------+
    2 rows in set (0.00 sec)


    Note  There are many different ways to use the WHERE clause in the SELECT . See the docs for all the details.


    We could go on forever with describing all the different uses of the WHERE clause, but we should instead mention how to sort the output.



     
     
    >>> More Perl Articles          >>> More By Apress Publishing
     

       

    PERL ARTICLES

    - More Perl Bits
    - Perl, Bit by Bit
    - Basic Charting with Perl
    - Using Getopt::Long: More Command Line Option...
    - Command Line Options in Perl: Using Getopt::...
    - Web Access with LWP
    - More Templating Tools for Perl
    - Site Layout with Perl Templating Tools
    - Build a Perl RSS Aggregator with Templating ...
    - Looping, Security, and Templating Tools
    - Perl: Bon Voyage Lists and Hashes
    - Templating Tools
    - Perl: Number Crunching
    - Perl Debuggers in Detail
    - Debugging Perl





    © 2003-2009 by Developer Shed. All rights reserved. DS Cluster 6 Hosted by Hostway
    For more Enterprise Application Development news, visit eWeek