tags:

views:

45

answers:

1

Is there way in MySQL to create DATETIME from a given attribute of type DATE and a given attribute of type TIME?

+3  A: 

datetime = CONCAT(date, ' ', time)

Zed