Computer Webmaster Gaming Console Graphics Forum

Welcome to the Computer Webmaster Gaming Console Graphics Forum forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact contact us.

MK PitStop Main Earn $25 Earn Money Posting Extras Members Blogs Image Hosting User Pages
Go Back   Computer Webmaster Gaming Console Graphics Forum > Webmaster Forum > Website Coding > Database
Register FAQ/Rules Become A V.I.P. Member Search Today's Posts Mark Forums Read

Database Database problems or need to ask a question? maybe something to do with sql injections or a database software question. Database topics cover MySQL, PostgreSQL, Oracle, SQL Server or anything else related to databases.

Google
Reply
 
LinkBack Thread Tools Display Modes
Old 05-31-2007, 7:40 PM   #1
Xavier Houppertz
 
Xavier Houppertz's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default 2 where clause in same statement Mysql 4.2

Hello,

I am experiencing problems in writing an sql query.
I would like to do a select count (pn_uid) where pn_did > 10 AND where
pn_did > 500 goup by and sort by

Of course if i do this I get everything that is above 500 (say 75)

But I would like a result like Uid >10 >500
18 25 75

I tried UNION, but I get two lines
Uid Tot
18 25
18 75

And i would like one ....

Ideas please ?

thanks,
Xavier




 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Reply With Quote
Advertisements
Old 05-31-2007, 7:40 PM   #2
Matthias Hoys
 
Matthias Hoys's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default 2 where clause in same statement Mysql 4.2


"Xavier Houppertz" <houppertzx@yahoo.com> wrote in message
news:wbSte.287781$Uh3.71153@biebel.telenet-ops.be...
> Hello,
>
> I am experiencing problems in writing an sql query.
> I would like to do a select count (pn_uid) where pn_did > 10 AND where
> pn_did > 500 goup by and sort by
>
> Of course if i do this I get everything that is above 500 (say 75)
>
> But I would like a result like Uid >10 >500
> 18 25 75
>
> I tried UNION, but I get two lines
> Uid Tot
> 18 25
> 18 75
>
> And i would like one ....
>
> Ideas please ?
>
> thanks,
> Xavier
>
>


Maybe you can do a SELECT on your UNION query ?

SELECT ... FROM
(SELECT ... FROM ... WHERE pn_did > 10
UNION
SELECT ... FROM ... WHERE pn_did > 500
)


 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Reply With Quote
Old 05-31-2007, 7:40 PM   #3
Xavier Houppertz
 
Xavier Houppertz's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default 2 where clause in same statement Mysql 4.2

Hello,

I'm not sure how you see this, so here is my whole query ...

Thanks for your help.

xavier

SELECT nuke_users.pn_uid AS "Uid", nuke_users.pn_name AS "Nom", count(
ed_rent.pn_uid ) AS "#"

FROM ed_rent

INNER JOIN nuke_users ON nuke_users.pn_uid = ed_rent.pn_uid WHERE
ed_date_sent IS NULL AND ed_date_return IS NULL GROUP BY ed_rent.pn_uid
UNION SELECT nuke_users.pn_uid, nuke_users.pn_name, count( ed_rent.pn_uid )
FROM ed_rent INNER JOIN nuke_users ON nuke_users.pn_uid = ed_rent.pn_uid
WHERE ed_date_return IS NULL AND ed_date_sent IS NOT NULL AND ed_lost = 0
GROUP BY ed_rent.pn_uid ORDER BY "Uid" ASC , "#" DESC



"Matthias Hoys" <idmwarpzone_NOSPAM_@yahoo.com> wrote in message
news:42b8886f$0$337$ba620e4c@news.skynet.be...
>
> "Xavier Houppertz" <houppertzx@yahoo.com> wrote in message
> news:wbSte.287781$Uh3.71153@biebel.telenet-ops.be...
>> Hello,
>>
>> I am experiencing problems in writing an sql query.
>> I would like to do a select count (pn_uid) where pn_did > 10 AND where
>> pn_did > 500 goup by and sort by
>>
>> Of course if i do this I get everything that is above 500 (say 75)
>>
>> But I would like a result like Uid >10 >500
>> 18 25 75
>>
>> I tried UNION, but I get two lines
>> Uid Tot
>> 18 25
>> 18 75
>>
>> And i would like one ....
>>
>> Ideas please ?
>>
>> thanks,
>> Xavier
>>
>>

>
> Maybe you can do a SELECT on your UNION query ?
>
> SELECT ... FROM
> (SELECT ... FROM ... WHERE pn_did > 10
> UNION
> SELECT ... FROM ... WHERE pn_did > 500
> )
>




 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Reply With Quote
Old 05-31-2007, 7:40 PM   #4
Xavier Houppertz
 
Xavier Houppertz's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default 2 where clause in same statement Mysql 4.2

Hello,

I'm not sure how you see this, so here is my whole query ...

Thanks for your help.

xavier

SELECT nuke_users.pn_uid AS "Uid", nuke_users.pn_name AS "Nom", count(
ed_rent.pn_uid ) AS "#"

FROM ed_rent

INNER JOIN nuke_users ON nuke_users.pn_uid = ed_rent.pn_uid WHERE
ed_date_sent IS NULL AND ed_date_return IS NULL GROUP BY ed_rent.pn_uid
UNION SELECT nuke_users.pn_uid, nuke_users.pn_name, count( ed_rent.pn_uid )
FROM ed_rent INNER JOIN nuke_users ON nuke_users.pn_uid = ed_rent.pn_uid
WHERE ed_date_return IS NULL AND ed_date_sent IS NOT NULL AND ed_lost = 0
GROUP BY ed_rent.pn_uid ORDER BY "Uid" ASC , "#" DESC



"Matthias Hoys" <idmwarpzone_NOSPAM_@yahoo.com> wrote in message
news:42b8886f$0$337$ba620e4c@news.skynet.be...
>
> "Xavier Houppertz" <houppertzx@yahoo.com> wrote in message
> news:wbSte.287781$Uh3.71153@biebel.telenet-ops.be...
>> Hello,
>>
>> I am experiencing problems in writing an sql query.
>> I would like to do a select count (pn_uid) where pn_did > 10 AND where
>> pn_did > 500 goup by and sort by
>>
>> Of course if i do this I get everything that is above 500 (say 75)
>>
>> But I would like a result like Uid >10 >500
>> 18 25 75
>>
>> I tried UNION, but I get two lines
>> Uid Tot
>> 18 25
>> 18 75
>>
>> And i would like one ....
>>
>> Ideas please ?
>>
>> thanks,
>> Xavier
>>
>>

>
> Maybe you can do a SELECT on your UNION query ?
>
> SELECT ... FROM
> (SELECT ... FROM ... WHERE pn_did > 10
> UNION
> SELECT ... FROM ... WHERE pn_did > 500
> )
>



 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Reply With Quote
Featured Websites
Free Space
Free Space
Free Space Free Space
Reply
Tags: , , ,




Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
[Mysql C Api] mysql_list_tables kilian Database 0 05-31-2007 7:40 PM
MYSQL 4.0 => 4.1 ja Database 1 05-31-2007 7:38 PM
can mySQL? Pachy Operating Systems And Software 0 05-28-2007 4:53 PM
Encription in mysql eric Database 2 07-16-2006 5:49 AM


Featured Websites




All times are GMT +1. The time now is 10:14 PM.


Powered by: vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO 3.0.0
Cheap Computers
MK PitStop Copyright 2005 - 2008

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98