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

Re^2: Resources for building database *server* interface

by etcshadow (Priest)
on Nov 12, 2004 at 20:22 UTC ( [id://407511]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    (
      FOOID       number,
      FOOTYPE     varchar,
      AMOUNT      number
    
  2. or download this
    (
      FOOID       number,
      FOOTYPE     varchar,
      AMOUNT      number,
    
  3. or download this
    )
    
  4. or download this
    select sum(amount), footype
    from foo
    group by footype
    
  5. or download this
    select sum(amount), footype
    from foo
    group by footype
    
  6. or download this
    select sum(sum_amount), footype
    from (
    ...
        group by footype
    )
    group by footype
    
  7. or download this
    select sum(amount), footype
    from foo
    where databaseid in (1,2,3)
    group by footype
    
  8. or download this
    ------------
    :Wq
    Not an editor command: Wq
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others goofing around in the Monastery: (5)
As of 2024-04-23 21:27 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found