SELECT column_list FROM table [WHERE search_conditions]
SELECT * FROM table [WHERE search_conditions]
SELECT title FROM title_table WHERE price < 10
SELECT title FROM title_table WHERE title LIKE "the"
$aref = $sth->fetch;
@array = $sth->fetchrow_array;
$sth->finish;
Performance is discussed in the Extra for Experts section in this chapter's lab.
What are the two steps for getting data back from your database?
|
Dan Keller Technical Services 4500 19th St., San Francisco California, USA 94114 tel: 415 / 861-4500 |