<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>ICT WB by Ka Wah Li</title>
      <link>https://padlet.com/echk/ICT20241105</link>
      <description></description>
      <language>en-us</language>
      <pubDate>2024-11-04 02:15:36 UTC</pubDate>
      <lastBuildDate>2024-11-26 02:04:51 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url></url>
      </image>
      <item>
         <title>3 （c）</title>
         <author></author>
         <link>https://padlet.com/echk/ICT20241105/wish/3232092604</link>
         <description><![CDATA[<p>查找學生的ID以及學生的課室。</p>]]></description>
         <enclosure url="" />
         <pubDate>2024-11-25 01:37:17 UTC</pubDate>
         <guid>https://padlet.com/echk/ICT20241105/wish/3232092604</guid>
      </item>
      <item>
         <title>1a)</title>
         <author></author>
         <link>https://padlet.com/echk/ICT20241105/wish/3232092905</link>
         <description><![CDATA[<p>SELECT CNAME FROM CUSTOMER  C</p><p>INNNER JOIN PORDER P</p><p> ON C.CID=P.CID </p><p>ORDER BY CNAME;</p><p><br></p><p>SELCECT CNAME FROM CUSTOMER </p><p>WHERE CID IN </p><p>(SELECT CID FROM PORDER)</p><p> ORDER BY CNAME;</p>]]></description>
         <enclosure url="" />
         <pubDate>2024-11-25 01:37:32 UTC</pubDate>
         <guid>https://padlet.com/echk/ICT20241105/wish/3232092905</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/echk/ICT20241105/wish/3232093355</link>
         <description><![CDATA[<p>1b)</p><p>SELECT SUM (PPRICE) FROM PORDER</p><p>WHERE SCODE IN (</p><p>SELECT SCODE FROM STATUS</p><p>WHERE SDESC = '已送達');</p>]]></description>
         <enclosure url="" />
         <pubDate>2024-11-25 01:37:52 UTC</pubDate>
         <guid>https://padlet.com/echk/ICT20241105/wish/3232093355</guid>
      </item>
      <item>
         <title>8b</title>
         <author></author>
         <link>https://padlet.com/echk/ICT20241105/wish/3232094787</link>
         <description><![CDATA[<p>select MNAME from MANAGER M</p><p>inner join EMPLOYEE E on M.MHKID=E.MHKID</p><p>group by MHKID having count(*)&lt;10;</p>]]></description>
         <enclosure url="" />
         <pubDate>2024-11-25 01:38:58 UTC</pubDate>
         <guid>https://padlet.com/echk/ICT20241105/wish/3232094787</guid>
      </item>
      <item>
         <title>5a)</title>
         <author></author>
         <link>https://padlet.com/echk/ICT20241105/wish/3232095849</link>
         <description><![CDATA[<p>找出擁有超過八本書本的作者</p>]]></description>
         <enclosure url="" />
         <pubDate>2024-11-25 01:39:50 UTC</pubDate>
         <guid>https://padlet.com/echk/ICT20241105/wish/3232095849</guid>
      </item>
      <item>
         <title>2A</title>
         <author></author>
         <link>https://padlet.com/echk/ICT20241105/wish/3232096910</link>
         <description><![CDATA[<p>Select PRODUCT.NAME, CATEGORY.NAME  From PRODUCT LEFT OUTER JOIN <a rel="noopener noreferrer nofollow" href="http://CATEGORY.NAME">CATEGORY</a> ON PRODUCT.CID= <a rel="noopener noreferrer nofollow" href="http://CATEGORY.NAME">CATEGORY.CID</a>;</p>]]></description>
         <enclosure url="" />
         <pubDate>2024-11-25 01:40:29 UTC</pubDate>
         <guid>https://padlet.com/echk/ICT20241105/wish/3232096910</guid>
      </item>
      <item>
         <title>4b</title>
         <author></author>
         <link>https://padlet.com/echk/ICT20241105/wish/3232097583</link>
         <description><![CDATA[<p>SELECT  X.ENAME, Y.ENAME </p><p>FROM DEPARTMENT D </p><p>INNER JOIN EMPLOYEE X ON D.DID = X.DID</p><p>INNER JOIN EMPLOYEE Y ON D.MID = Y.EID</p>]]></description>
         <enclosure url="" />
         <pubDate>2024-11-25 01:41:01 UTC</pubDate>
         <guid>https://padlet.com/echk/ICT20241105/wish/3232097583</guid>
      </item>
      <item>
         <title>8a)</title>
         <author></author>
         <link>https://padlet.com/echk/ICT20241105/wish/3232098057</link>
         <description><![CDATA[<p>SELECT ENAME, DOE FROM EMPLOYEE ORDER BY DOE</p><p>UNION </p><p>SELECT MNAME, DOE FROM MANAGER ORDER BY DOE;</p>]]></description>
         <enclosure url="" />
         <pubDate>2024-11-25 01:41:21 UTC</pubDate>
         <guid>https://padlet.com/echk/ICT20241105/wish/3232098057</guid>
      </item>
      <item>
         <title>6（a）</title>
         <author></author>
         <link>https://padlet.com/echk/ICT20241105/wish/3232099916</link>
         <description><![CDATA[<p>找出1995上映動作片的男演員</p>]]></description>
         <enclosure url="" />
         <pubDate>2024-11-25 01:42:48 UTC</pubDate>
         <guid>https://padlet.com/echk/ICT20241105/wish/3232099916</guid>
      </item>
      <item>
         <title>7(c)</title>
         <author></author>
         <link>https://padlet.com/echk/ICT20241105/wish/3232099960</link>
         <description><![CDATA[<p>子查詢寫法：</p><p><br/></p><p>SELECT PNAME FROM PRODUCT WHERE PID IN</p><p>(SELECT PID FROM SELL WHERE SID</p><p>IN (SELECT SID FROM SHOP WHERE SNAME = '哈利五金' or SNAME = '金厨‘));</p><p><br/></p><p>Inner join 寫法：</p><p><br/></p><p>SELECT PNAME FROM SELL SE</p><p>INNER JOIN PRODUCT P</p><p>ON <a rel="noopener noreferrer nofollow" href="http://SE.PID">SE.PID</a> = <a rel="noopener noreferrer nofollow" href="http://P.PID">P.PID</a></p><p>INNER JOIN  SHOP SH</p><p>ON SE.SID = SH.SID</p><p>WHERE SH.SNAME  = '哈利五金' or SNAME = '金厨‘;</p>]]></description>
         <enclosure url="" />
         <pubDate>2024-11-25 01:42:50 UTC</pubDate>
         <guid>https://padlet.com/echk/ICT20241105/wish/3232099960</guid>
      </item>
      <item>
         <title>9(a)</title>
         <author>s1191432_1</author>
         <link>https://padlet.com/echk/ICT20241105/wish/3232100427</link>
         <description><![CDATA[<p>create index student_index on STUDENT(SNAME);</p>]]></description>
         <enclosure url="" />
         <pubDate>2024-11-25 01:43:16 UTC</pubDate>
         <guid>https://padlet.com/echk/ICT20241105/wish/3232100427</guid>
      </item>
      <item>
         <title>4A</title>
         <author></author>
         <link>https://padlet.com/echk/ICT20241105/wish/3232101953</link>
         <description><![CDATA[<p>SELECT ENAME FROM EMPLOYEE</p><p>WHERE GENDER = 'F'</p><p>GROUP BY DID</p><p>HAVING COUNT (*) &gt;= 30 ;</p>]]></description>
         <enclosure url="" />
         <pubDate>2024-11-25 01:44:26 UTC</pubDate>
         <guid>https://padlet.com/echk/ICT20241105/wish/3232101953</guid>
      </item>
      <item>
         <title>7(a)</title>
         <author></author>
         <link>https://padlet.com/echk/ICT20241105/wish/3232102001</link>
         <description><![CDATA[<p>找出沒有同時購買服裝和傢俬類別的客戶</p><p><br/></p>]]></description>
         <enclosure url="" />
         <pubDate>2024-11-25 01:44:29 UTC</pubDate>
         <guid>https://padlet.com/echk/ICT20241105/wish/3232102001</guid>
      </item>
      <item>
         <title>3a</title>
         <author></author>
         <link>https://padlet.com/echk/ICT20241105/wish/3232102381</link>
         <description><![CDATA[<p>吳老師 小明</p><p>吳老師 小德</p><p>杜老師 小格</p><p>毛老師 小物</p><p>步老師</p>]]></description>
         <enclosure url="" />
         <pubDate>2024-11-25 01:44:46 UTC</pubDate>
         <guid>https://padlet.com/echk/ICT20241105/wish/3232102381</guid>
      </item>
      <item>
         <title>Q7 (b)</title>
         <author></author>
         <link>https://padlet.com/echk/ICT20241105/wish/3232104766</link>
         <description><![CDATA[<p>SELECT PNAME FROM PRODUCT </p><p>LEFT JOIN SELL ON PRODUCT.PID = <a rel="noopener noreferrer nofollow" href="http://SELL.PID">SELL.PID</a></p><p>where PRODUCT.PID = NULL;</p><p><br/></p><p>或</p><p><br/></p><p>SELECT PNAME FROM PRODUCT </p><p>LEFT JOIN SELL ON PRODUCT.PID = <a rel="noopener noreferrer nofollow" href="http://SELL.PID">SELL.PID</a></p><p>where PRODUCT.PID IS NULL;</p>]]></description>
         <enclosure url="" />
         <pubDate>2024-11-25 01:46:23 UTC</pubDate>
         <guid>https://padlet.com/echk/ICT20241105/wish/3232104766</guid>
      </item>
      <item>
         <title>5(c)</title>
         <author></author>
         <link>https://padlet.com/echk/ICT20241105/wish/3232105094</link>
         <description><![CDATA[<p>SELECT AUTHORNANE </p><p>FROM AUTHOR</p><p>WHERE AUTHORID IN</p><p>(SELECT AUTHORID FROM BOOK</p><p>GROUP BY AUTHORID</p><p>HAVING SUM ( PAGE ) &gt; </p><p>( SELECT AVG ( PAGE ) </p><p>FROM BOOK ) ) ;</p><p><br></p>]]></description>
         <enclosure url="" />
         <pubDate>2024-11-25 01:46:37 UTC</pubDate>
         <guid>https://padlet.com/echk/ICT20241105/wish/3232105094</guid>
      </item>
      <item>
         <title>6c</title>
         <author></author>
         <link>https://padlet.com/echk/ICT20241105/wish/3232105379</link>
         <description><![CDATA[<p>select ANAME from ACTOR a , FILM f , ROLE r where (a.AID=r.AID and f.FID=r.FID) and FTITLE=‘怪獸工資' intersect select ANAME from ACTOR a , FILM f , ROLE r where (a.AID=r.AID and f.FID=r.FID) and FTITLE=‘怪獸中學' );</p>]]></description>
         <enclosure url="" />
         <pubDate>2024-11-25 01:46:49 UTC</pubDate>
         <guid>https://padlet.com/echk/ICT20241105/wish/3232105379</guid>
      </item>
      <item>
         <title>2b</title>
         <author></author>
         <link>https://padlet.com/echk/ICT20241105/wish/3232106128</link>
         <description><![CDATA[<p>select <a rel="noopener noreferrer nofollow" href="http://C.NAME">C.NAME</a>, count(*) from PRODUCT P, CATEGORY C </p><p>where (P.CID=C.CID) and (PRICE&lt;=100)</p><p>group by P.CID having count(*)&gt;=10;</p>]]></description>
         <enclosure url="" />
         <pubDate>2024-11-25 01:47:23 UTC</pubDate>
         <guid>https://padlet.com/echk/ICT20241105/wish/3232106128</guid>
      </item>
      <item>
         <title>3(b)</title>
         <author></author>
         <link>https://padlet.com/echk/ICT20241105/wish/3232106163</link>
         <description><![CDATA[<p>SELECT TNAME FROM CLASS WHERE CNAME IN (SELECT CNAME FROM STUDENT  WHERE  SCORE&gt;= 80);</p>]]></description>
         <enclosure url="" />
         <pubDate>2024-11-25 01:47:25 UTC</pubDate>
         <guid>https://padlet.com/echk/ICT20241105/wish/3232106163</guid>
      </item>
      <item>
         <title>6 (b)</title>
         <author></author>
         <link>https://padlet.com/echk/ICT20241105/wish/3232106586</link>
         <description><![CDATA[<p>select A1.ANAME, A2.ANAME from ACTOR A1, ACTOR A2</p><p>where A1.AGE-A2.AGE&gt;=20 and GENDER='F';</p>]]></description>
         <enclosure url="" />
         <pubDate>2024-11-25 01:47:45 UTC</pubDate>
         <guid>https://padlet.com/echk/ICT20241105/wish/3232106586</guid>
      </item>
      <item>
         <title>5b)</title>
         <author></author>
         <link>https://padlet.com/echk/ICT20241105/wish/3232106851</link>
         <description><![CDATA[<p>SELECT BOOKNAME FROM BOOK </p><p>INNER JOIN AUTHOR</p><p>ON BOOK.AUTHORID=AUTHOR.AUTHORID</p><p>WHERE ( PAGE&lt;200 )</p><p>AND AUTHORID IN(SELECT AUTHORID FROM AUTHOR WHERE YEAR(DOB)&lt;1960) ;</p>]]></description>
         <enclosure url="" />
         <pubDate>2024-11-25 01:47:55 UTC</pubDate>
         <guid>https://padlet.com/echk/ICT20241105/wish/3232106851</guid>
      </item>
      <item>
         <title>肆乙</title>
         <author></author>
         <link>https://padlet.com/echk/ICT20241105/wish/3232119277</link>
         <description><![CDATA[<p>SELECT  X.ENAME, Y.ENAME </p><p>FROM DEPARTMENT D </p><p>INNER JOIN EMPLOYEE X ON D.EID = X.EID</p><p>INNER JOIN EMPLOYEE Y ON D.MID = Y.EID</p>]]></description>
         <enclosure url="" />
         <pubDate>2024-11-25 01:56:22 UTC</pubDate>
         <guid>https://padlet.com/echk/ICT20241105/wish/3232119277</guid>
      </item>
      <item>
         <title>6c</title>
         <author></author>
         <link>https://padlet.com/echk/ICT20241105/wish/3233864822</link>
         <description><![CDATA[<p>select ANAME from ACTOR a , FILM f , ROLE r where (a.AID=r.AID and f.FID=r.FID) and FTITLE=‘怪獸工資' intersect select ANAME from ACTOR a , FILM f , ROLE r where (a.AID=r.AID and f.FID=r.FID) and FTITLE=‘怪獸中學' );</p>]]></description>
         <enclosure url="" />
         <pubDate>2024-11-26 01:08:12 UTC</pubDate>
         <guid>https://padlet.com/echk/ICT20241105/wish/3233864822</guid>
      </item>
      <item>
         <title>6b</title>
         <author></author>
         <link>https://padlet.com/echk/ICT20241105/wish/3233909359</link>
         <description><![CDATA[<p>SELECT <a rel="noopener noreferrer nofollow" href="http://A1.NAME">A1.ANAME</a> AS Female_Actor_1,</p><p>       <a rel="noopener noreferrer nofollow" href="http://A2.NAME">A2.ANAME</a> AS Female_Actor_2,</p><p>       ABS(A1.AGE - A2.AGE) AS Age_Difference</p><p>FROM ACTOR A1, ACTOR A2</p><p>WHERE A1.GENDER = 'F'</p><p>  AND A2.GENDER = 'F'</p><p>  AND <a rel="noopener noreferrer nofollow" href="http://A1.NAME">A1.ANAME</a> &lt;&gt; <a rel="noopener noreferrer nofollow" href="http://A2.NAME">A2.ANAME</a></p><p>  AND ABS(A1.AGE - A2.AGE) &gt; 20;</p><p><br/></p><p>或</p><p><br/></p><p>select A1.ANAME, A2.ANAME from ACTOR A1, ACTOR A2</p><p>where A1.AGE-A2.AGE&gt;=20 and GENDER='F';</p><p><br/></p>]]></description>
         <enclosure url="" />
         <pubDate>2024-11-26 01:32:12 UTC</pubDate>
         <guid>https://padlet.com/echk/ICT20241105/wish/3233909359</guid>
      </item>
      <item>
         <title>6c</title>
         <author></author>
         <link>https://padlet.com/echk/ICT20241105/wish/3233928649</link>
         <description><![CDATA[<p>select ANAME from ACTOR a , FILM f , ROLE r where (a.AID=r.AID and f.FID=r.FID) and FTITLE=‘怪獸工資' intersect select ANAME from ACTOR a , FILM f , ROLE r where (a.AID=r.AID and f.FID=r.FID) and FTITLE=‘怪獸中學' );</p>]]></description>
         <enclosure url="" />
         <pubDate>2024-11-26 01:43:35 UTC</pubDate>
         <guid>https://padlet.com/echk/ICT20241105/wish/3233928649</guid>
      </item>
   </channel>
</rss>
