I have a table defined as class - Id, Date, Time, Session, Remark Int is auto incremented Date,Time and Remark will be added automatically
Session should be the concatenate of (Date + Time)
Suppose Date and Time is varchar(50)
Insert into class (Date,Time,Session,Remark) Values ('a','b', Concat(Date + Time),'c')
Example:
Date - 12/12/2012
Time - 9:00 - 11:00am
Then -->
Session - 12/12/2012 9:00-11:00am