Hi all,
I have a table,
account_transac tions(trans_rid int primary key COMMENT 'Transaction ID',
trans_date date COMMENT 'Date of transaction',
trans_time time COMMENT 'Time of transaction')
I need a query which returns me two fields "Transactio n ID" and "Transactio n Date" time.
The "Transactio n Date" should be of type datetime(using both trans_date and trans_time).
I have a table,
account_transac tions(trans_rid int primary key COMMENT 'Transaction ID',
trans_date date COMMENT 'Date of transaction',
trans_time time COMMENT 'Time of transaction')
I need a query which returns me two fields "Transactio n ID" and "Transactio n Date" time.
The "Transactio n Date" should be of type datetime(using both trans_date and trans_time).
Comment