Hi
How to get Server Date & Time separately in MYSql using WIndows Application .
Thanks
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Jiteendra SampathiraoPosted Sep 5, 2011, 1:22 AM
select CURDATE(); //for Date
select CURTIME(); //for Time..
Mayur GujrathiPosted Sep 5, 2011, 3:03 AM
SQLSTR = " SELECT CONVERT(VARCHAR(11),GETDATE(),103) "