T thebigwillie Member Joined Mar 25, 2004 Messages 75 Nov 8, 2004 #1 Can someone please write the SQL statement for me on here for this question..I'm stumped with this one..Thanx in advance
Can someone please write the SQL statement for me on here for this question..I'm stumped with this one..Thanx in advance
Freedom_Dragon The 36th Dragon Joined Oct 11, 2003 Messages 154 Location Behind a door that will never open. Gender Undisclosed HSC N/A Nov 8, 2004 #2 [Cost][Peripheral][Maker][Model] $99.00..Scanner.....XYZ....xy600z3 $99.00..Scanner...Firefly..600pxt+t SELECT Cost, Peripheral, Maker, Model FROM Hardware Table WHERE Cost="$99.00" AND Peripheral="Scanner"
[Cost][Peripheral][Maker][Model] $99.00..Scanner.....XYZ....xy600z3 $99.00..Scanner...Firefly..600pxt+t SELECT Cost, Peripheral, Maker, Model FROM Hardware Table WHERE Cost="$99.00" AND Peripheral="Scanner"
konggo Member Joined Apr 30, 2004 Messages 95 Location North Shore Gender Male HSC 2004 Nov 8, 2004 #4 isnt it CHOSE maker FROM HARDWARE : TABLE WHERE Cost =$99.00 and peripheral=scanner Order maker By DESC
isnt it CHOSE maker FROM HARDWARE : TABLE WHERE Cost =$99.00 and peripheral=scanner Order maker By DESC
Freedom_Dragon The 36th Dragon Joined Oct 11, 2003 Messages 154 Location Behind a door that will never open. Gender Undisclosed HSC N/A Nov 8, 2004 #6 The result from the query shows Cost, Peripheral, Maker, Model. Thus the fields Cost, Peripheral, Maker & Model were SELECTED
The result from the query shows Cost, Peripheral, Maker, Model. Thus the fields Cost, Peripheral, Maker & Model were SELECTED
konggo Member Joined Apr 30, 2004 Messages 95 Location North Shore Gender Male HSC 2004 Nov 8, 2004 #7 so its alway SELECT FROM WHERE ORDER
konggo Member Joined Apr 30, 2004 Messages 95 Location North Shore Gender Male HSC 2004 Nov 9, 2004 #9 oder by decending order(alphabetical) or ASED(order by aphabetical assesndin)
Freedom_Dragon The 36th Dragon Joined Oct 11, 2003 Messages 154 Location Behind a door that will never open. Gender Undisclosed HSC N/A Nov 9, 2004 #10 Ascending Order Eg: A to Z or 0 to 9 Descending Order Eg: Z to A or 9 to 0