I got a timestamp record in my msql db which has date and time.
I would to get just the time from it, or just time hour and minute.
How can I split that record?
EDIT here is a picture of my table:

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Use MySQL’s
TIME()function:To obtain only the date part, you can use the
DATE()function.