Skip to Content
PHP and MySQL® 24-Hour Trainer
book

PHP and MySQL® 24-Hour Trainer

by Andrea Tarr
November 2011
Beginner
504 pages
11h 30m
English
Wrox
Content preview from PHP and MySQL® 24-Hour Trainer

Lesson 23

Selecting Data

In this lesson you learn how to retrieve data from the database. The SELECT command is arguably the most common MySQL command you use in PHP programs. It is also one of the most complex, with clauses that enable you to choose what table(s) you use, which columns are returned, what conditions must be met before a row is selected, what order to sort the data in, and whether and how to group and summarize the data.

You work with a single table at a time in this lesson. In the next lesson you learn how to use multiple tables. The table used to illustrate this lesson is shown in Figure 23-1 and is created from the following code:

CREATE TABLE IF NOT EXISTS ‘table1’ (
  ‘id’ int(11) NOT NULL AUTO_INCREMENT PRIMARY KEY,
  ‘description’ text,
  ‘code’ int(11) NOT NULL DEFAULT ‘42’
) ENGINE=MyISAM;

INSERT INTO ‘table1’ (‘id’, ‘description’, ‘code’) VALUES
(101, ‘abc’, 99),
(102, ‘a’‘bc’, 15),
(103, ‘a’‘bc’, 15),
(104, ‘a’‘bc’, 15),
(105, ‘def’, 23),
(106, ‘ghi’, 23),
(107, ‘jkl’, 15),
(108, ‘mno’, 15),
(109, ‘pqr’, 23),
(110, ‘stu’, 42),
(111, ‘vwx’, 42),
(112, ‘yza’, 42),
(118, ‘efg’, 99);

Using the SELECT Command

The easiest form of the SELECT command is to select all fields and rows from a single table:

SELECT * FROM ‘table1’;

The asterisk (*) indicates that all fields are to be selected and FROM ‘table1’ tells which table to use. By default all ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

Expert PHP and MySQL®

Expert PHP and MySQL®

Andrew Curioso, Ronald Bradford, Patrick Galbraith

Publisher Resources

ISBN: 9781118066881Purchase book