baldwingrand
03-13-2009, 12:01 PM
I have four tables: ClockHours, ClockMinutes, TimeofDay, and TimeZones. There is a front-end ASP page in which the user is selecting (via dropdown) from each of these tables to produce something eventually mimics a datetime. (I won't go into the minutaie, but simply using a datetime won't work here.)
My question is- I'd like to concatenate these values and do an insert on them into one field in another table. So, the concatenated value might look like so:
'1' + ':' + '00' + ' ' + 'AM' + ' ' + 'Central Time (CST)'
I want to insert the above value into the "DropTime" field of "tblInput." Is this possible, or am I making things harder than they need to be? Thanks.
My question is- I'd like to concatenate these values and do an insert on them into one field in another table. So, the concatenated value might look like so:
'1' + ':' + '00' + ' ' + 'AM' + ' ' + 'Central Time (CST)'
I want to insert the above value into the "DropTime" field of "tblInput." Is this possible, or am I making things harder than they need to be? Thanks.