RE: How do I get the time?

2002-03-13 Thread Gurhan Ozen
Hi Kathy, Are you trying to get current time in mysql ?? If yes, you can do it by issuing: SELECT NOW(); statement... Gurhan -Original Message- From: Kathy Reyes [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 13, 2002 5:17 PM To: [EMAIL PROTECTED] Subject: How do I get the time? I

RE: How do I get the time?

2002-03-13 Thread Roger Baklund
* Kathy Reyes > I'm trying time a export process but I cant figure out what the right sql > statement. > I tried using getdate() but it gives me an error. getdate() is not a valid mysql function, try NOW() or CURTIME(). http://www.mysql.com/doc/D/a/Date_and_time_functions.html > -- Roger query