![]() |
|
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. |
| |||||||
| 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. |
![]() |
| | LinkBack | Thread Tools | Display Modes |
| | #1 | ||
| 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 | |||
|
| Advertisements |
| | #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 ) | |||
|
| | #3 | ||
| 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 > ) > | |||
|
| | #4 | ||
| 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 > ) > | |||
|
| Featured Websites | ||||
|
![]() |
| Tags: clause, mysql, same, statement |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
| |
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 | ||||
|