Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~367 People Reached
Favorite Forums
Favorite Tags
Member Avatar for satees

Hi, I have stored "DateTime" format in the database, but i need only "date" at the time of retrive. How to do this? Please help. Thanks in advance. Satees

Member Avatar for SheSaidImaPregy
0
213
Member Avatar for Rocksoft

could anybody help to create autocomplete dropdown box with editable, whatever we typing in dropdown box it should show dropdown of the control, in my project i filled the dropdown box by store number from mysql database, For Eg., if i will type "43" it should show all stores starts …

Member Avatar for showtime
-1
71
Member Avatar for showtime

SELECT Stores.strStoreName, (CASE WHEN T.intItemID=S.MinSub THEN Stores.strLogo ELSE NULL END) AS displayCategory, T.txtDescription FROM Items AS T INNER JOIN Stores ON T.intStoreID = Stores.intStoreID, ( SELECT intStoreID , Min(intItemID ) AS MinSub FROM Items GROUP BY intStoreID ) AS S WHERE T.intStoreID = S.intStoreID ORDER BY T.intStoreID, T.intItemID The SQL …

0
83