<?xml version="1.0" encoding="utf-8"?>
<!-- generator="FeedCreator 1.7.2" -->
<rss version="2.0">
    <channel>
        <title>Lowyat.NET: Latest topics by kelvinli3w</title>
        <description></description>
        <link>http://forum.lowyat.net/</link>
        <lastBuildDate>Sun, 12 Jul 2026 20:41:10 +0800</lastBuildDate>
        <generator>FeedCreator 1.7.2</generator>
        <item>
            <title>SQL Distinct &amp;amp; Count</title>
            <link>http://forum.lowyat.net/topic/1441239</link>
            <description>I need to do this&lt;br /&gt;&lt;br /&gt;&lt;!--c1--&gt;&lt;div class='codetop'&gt;CODE&lt;/div&gt;&lt;div class='codemain'&gt;&lt;!--ec1--&gt;&lt;br /&gt;Album_title &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Music_type &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Total&lt;br /&gt;xxx &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Clasic &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;3&lt;br /&gt;abc &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Clasic &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;3&lt;br /&gt;123 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Clasic &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;3&lt;br /&gt;asd &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Rock &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 2&lt;br /&gt;fgh &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Rock &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 2&lt;br /&gt;&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;&lt;br /&gt;Total = the total amount within each music type&lt;br /&gt;&lt;br /&gt;but so far i can only do it like this&lt;br /&gt;without the album title it can distinct and count perfectly&lt;br /&gt;&lt;br /&gt;&lt;!--c1--&gt;&lt;div class='codetop'&gt;CODE&lt;/div&gt;&lt;div class='codemain'&gt;&lt;!--ec1--&gt;&lt;br /&gt;SELECT DISTINCT MUSIC_TYPE.Music_type, COUNT&amp;#40;ALBUM.Music_Type_ID&amp;#41; AS TOTAL&lt;br /&gt;FROM ALBUM, MUSIC_TYPE&lt;br /&gt;WHERE ALBUM.Music_Type_ID = MUSIC_TYPE.Music_Type_ID&lt;br /&gt;GROUP BY MUSIC_TYPE.Music_type;&lt;br /&gt;&lt;br /&gt;Music_type &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Total&lt;br /&gt;Clasic &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;3&lt;br /&gt;Clasic &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;3&lt;br /&gt;Clasic &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;3&lt;br /&gt;Rock &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 2&lt;br /&gt;Rock &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 2&lt;br /&gt;&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;&lt;br /&gt;&lt;br /&gt;but if i include album title, it will look like this&lt;br /&gt;&lt;br /&gt;&lt;!--c1--&gt;&lt;div class='codetop'&gt;CODE&lt;/div&gt;&lt;div class='codemain'&gt;&lt;!--ec1--&gt;&lt;br /&gt;SELECT ALBUM.Album_title, MUSIC_TYPE.Music_type, COUNT&amp;#40;DISTINCT ALBUM.Music_Type_ID&amp;#41; AS TOTAL &lt;br /&gt;FROM ALBUM, MUSIC_TYPE &lt;br /&gt;WHERE ALBUM.Music_Type_ID = MUSIC_TYPE.Music_Type_ID &lt;br /&gt;GROUP BY ALBUM.Title, MUSIC_TYPE.Music_type;&lt;br /&gt;&lt;br /&gt;Album_title &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Music_type &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Total&lt;br /&gt;xxx &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Clasic &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1&lt;br /&gt;abc &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Clasic &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1&lt;br /&gt;123 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Clasic &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1&lt;br /&gt;asd &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Rock &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 1&lt;br /&gt;fgh &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Rock &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 1&lt;br /&gt;&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;&lt;br /&gt;&lt;br /&gt;Where did i do wrong? Thanks.&lt;br /&gt;&lt;br /&gt;btw i&amp;#39;m using Oracle 10g XE.</description>
            <author>kelvinli3w</author>
            <category>Codemasters</category>
            <pubDate>Mon, 31 May 2010 10:39:13 +0800</pubDate>
        </item>
        <item>
            <title>any1 know any comic rental shop in subang jaya?</title>
            <link>http://forum.lowyat.net/topic/1392202</link>
            <description>does anyone know any comic rental shop around subang jaya? &lt;br /&gt;&lt;br /&gt;So far i know that,&lt;br /&gt;&lt;br /&gt;Summit 1 already closed.&lt;br /&gt;&lt;br /&gt;Taipan got 2 but 1 closed edy and the other 1 will move to another new location soon.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;thanks</description>
            <author>kelvinli3w</author>
            <category>Serious Kopitiam</category>
            <pubDate>Thu, 15 Apr 2010 20:46:32 +0800</pubDate>
        </item>
        <item>
            <title>having problem with win7 64</title>
            <link>http://forum.lowyat.net/topic/1346065</link>
            <description>i just applied for the 10gb package + free modem (e1550), i can install the dashboard but after that...it keeps showing Huawei Mobile Connect - USB device driver fails to install.... anybody have a solution for this? i tried to reinstall a few times then manually install, same problem persist =&amp;#092; &lt;br /&gt;&lt;br /&gt;my os : Windows 7 64 Ultimate</description>
            <author>kelvinli3w</author>
            <category>Networks and Broadband</category>
            <pubDate>Fri, 05 Mar 2010 18:32:08 +0800</pubDate>
        </item>
        <item>
            <title>should i delete HP Recovery Partition?</title>
            <link>http://forum.lowyat.net/topic/1164810</link>
            <description>like the title says, should i delete the HP Recovery Partition? I have already create the recovery DVDs, and i need those space for my stuff =3&lt;br /&gt;&lt;br /&gt;p/s: i heard that there will be some error message on every boot, after the deletion on the recover partition? is this true?&lt;br /&gt;&lt;br /&gt;*The Error Message*&lt;br /&gt;Warning: A  partition overlaps your system recovery partition. Press F10 to start system recovery anyway or another key to delete the recovery partition.&lt;br /&gt;&lt;br /&gt;</description>
            <author>kelvinli3w</author>
            <category>Technical Support</category>
            <pubDate>Tue, 15 Sep 2009 22:46:32 +0800</pubDate>
        </item>
        <item>
            <title>Need recommendation on buying notebook</title>
            <link>http://forum.lowyat.net/topic/1162461</link>
            <description>Well, long story short, my acer notebook just died a few days ago =&amp;#092;&lt;br /&gt;&lt;br /&gt;I need some recommendation on buying a new notebook, my budget is about RM3k, prefer intel + nvidia, which can play new games on low-medium settings and can last for at least 2 years, any brand except Acer.&lt;br /&gt;&lt;br /&gt;My choice:&lt;br /&gt;&lt;br /&gt;HP Pavilion dv3-2111&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;any recommendations?&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Thank you &lt;!--emo&amp;:D--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/biggrin.gif' border='0' style='vertical-align:middle' alt='biggrin.gif' /&gt;&lt;!--endemo--&gt;</description>
            <author>kelvinli3w</author>
            <category>Hardware</category>
            <pubDate>Sun, 13 Sep 2009 20:36:03 +0800</pubDate>
        </item>
    </channel>
</rss>
