Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Re: (OT) Exclusion selection on DBI

by erix (Prior)
on Jan 25, 2008 at 15:04 UTC ( [id://664292]=note: print w/replies, xml ) Need Help??


in reply to (OT) Exclusion selection on DBI

It seems to me you're trying to select the data, and not count it. Maybe a complete drop/create/insert/select cycle of this helps you:

-- drop table if exists supermarket; -- will completely erase the whol +e table, uncomment only if safe :) -- create a new table: create table supermarket (fruit text, color text, supermarket_id integ +er); -- insert data: insert into supermarket (fruit, color, supermarket_id) values ('Orange', 'yellow', 1); insert into supermarket (fruit, color, supermarket_id) values ('Orange', 'green' , 2); insert into supermarket (fruit, color, supermarket_id) values ('Orange', 'blue' , 3); insert into supermarket (fruit, color, supermarket_id) values ('Grape' , 'black' , 1); insert into supermarket (fruit, color, supermarket_id) values ('Strawberry', 'blue' , 1); insert into supermarket (fruit, color, supermarket_id) values ('Mellon' , 'red' , 2); insert into supermarket (fruit, color, supermarket_id) values ('Mellon' , 'green' , 2); insert into supermarket (fruit, color, supermarket_id) values ('Mellon' , 'white' , 1); insert into supermarket (fruit, color, supermarket_id) values ('Banana', 'black' , 1); -- select data: select fruit, color, supermarket_id from supermarket where supermarket_id in (1,2) and fruit = 'Orange' order by fruit /* -- resultset: "Orange", "yellow", 1 "Orange", "green" , 2 */

(SQL is code and can (should?) be formatted)

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://664292]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others about the Monastery: (None)
    As of 2024-04-25 00:51 GMT
    Sections?
    Information?
    Find Nodes?
    Leftovers?
      Voting Booth?

      No recent polls found