Talk About Network

Google


Register and Login
Nick
Password
Register create new account Sign up is FREE and you can post replies, new topics, bookmark posts and more!
Recover lost password


Data Bases > Object > Re: How to find...
Latest [ Topics | Posts ] Archive Post A New Topic Post a Reply
<< Topic < Post Post 12 of 12 Topic 326 of 365
Post > Topic >>

Re: How to find persons who like red fruits or crunchy veggies?

by "Neo" <neo55592@[EMAIL PROTECTED] > Nov 17, 2006 at 04:10 PM

> In your language, can you query:
> How many fruit colors are there?
> Which fruit color(s) is/are the most liked?
> How many veggies are there that nobody likes?

An updated example with min, max, sum, avg and count functions.

(; Create qty 28, 30, 35)
(new '25 'quantity)
(new '30 'quantity)
(new '35 'quantity)

(; Create a verb named age)
(new 'age 'verb)

(; Create a person named john whose age is 25)
(new 'john 'person)
(create john age 25)

(; Create a person named mary whose age is 30)
(new 'mary 'person)
(create mary age 30)

(; Create a person named bob whose age is 35)
(new 'bob 'person)
(create bob age 35)

(; Create a person named sue whose age is unknown)
(new 'sue 'person)

(; Count persons)
(; Returns qty instance named 4)
(count (select person instance *))

(; Count persons with age)
(; Returns qty instance named 3)
(count (and (select person instance *)
            (select * age)))

(; Get minimum age of persons)
(; Returns qty instance named 25)
(min (select (select person instance *) age *))

(; Get maximum age of persons)
(; Returns qty instance named 35)
(max (select (select person instance *) age *))

(; Get sum of persons age)
(; Returns qty instance named 90)
(sum (select (select person instance *) age *))

(; Get average of persons age)
(; Returns qty instance named 30)
(avg (select (select person instance *) age *))

For details, see www.dbfordummies.com/example/ex045.asp
 




 12 Posts in Topic:
How to find persons who like red fruits or crunchy veggies?
"Neo" <neo55  2006-11-14 21:16:09 
Re: How to find persons who like red fruits or crunchy veggies?
kvnkrkptrck@[EMAIL PROTEC  2006-11-15 11:48:13 
Re: How to find persons who like red fruits or crunchy veggies?
"Neo" <neo55  2006-11-15 15:05:15 
Re: How to find persons who like red fruits or crunchy veggies?
"Aloha Kakuikanu&quo  2006-11-15 16:27:03 
Re: How to find persons who like red fruits or crunchy veggies?
michael@[EMAIL PROTECTED]  2006-11-15 19:50:15 
Re: How to find persons who like red fruits or crunchy veggies?
"Tonkuma" <t  2006-11-15 23:08:44 
Re: How to find persons who like red fruits or crunchy veggies?
"Ed Prochak" &l  2006-11-16 07:27:25 
Re: How to find persons who like red fruits or crunchy veggies?
"Neo" <neo55  2006-11-16 07:52:34 
Re: How to find persons who like red fruits or crunchy veggies?
"Neo" <neo55  2006-11-16 09:46:45 
Re: How to find persons who like red fruits or crunchy veggies?
"Neo" <neo55  2006-11-16 13:34:58 
Re: How to find persons who like red fruits or crunchy veggies?
"Neo" <neo55  2006-11-16 21:27:05 
Re: How to find persons who like red fruits or crunchy veggies?
"Neo" <neo55  2006-11-17 16:10:08 

Post A Reply:
  Go here to Signup

AddThis Feed Button


About - Advertising - Contact - Frequently Asked Questions - Privacy Policy - Terms of Use - Signup

Contact
tan12V112 Thu Aug 21 20:47:53 CDT 2008.