Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
3
Posts with Upvotes
3
Upvoting Members
3
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
Ranked #25.0K
Ranked #3K
~2K People Reached
Favorite Tags

8 Posted Topics

Member Avatar for ravi142

SELECT `chat_msgs` from `user_chat` where chat_from_id='2'AND chat_to_id='10' Order by MSG_ID DESC LIMIT 0,5 Above code will show you the 5 most recent chat `Limit 0,10` will gave you the 10 recent chat

Member Avatar for Purvi_1
0
442
Member Avatar for ronmark.madrona
Member Avatar for Triple_7
Member Avatar for jaejoong

in my sql you can set the limit of how many rows you want to show by adding Limit [n] to the query. Select * from table Limit 5;

Member Avatar for riahc3
0
393
Member Avatar for AmrMohammed

You can achieve it by doing the following `select cols from table order by case when col = 0 then 0 else 1 end, col desc` The first order by was to determine the zeroes and place it on the top list. The second order was to achieve the descending …

Member Avatar for Jefferson_1
0
204
Member Avatar for shivap1711

Question: Is MYSQLD.exe running on the background/task manager? if not go the the location of your Mysql and look for the file MySQLD.exe, run it then try to start the MySQL Services again.

Member Avatar for Jefferson_1
0
76
Member Avatar for Ho$$@M_Sh2awa
Member Avatar for pbarks1

try changing this displayLbl.Text = minutes.ToString() & " : " & seconds.ToString() to this displayLbl.Text = minutes.ToString("D2") & " : " & seconds.ToString("D2")

Member Avatar for pbarks1
0
189

The End.