Hi all, total newb here, but I did search and it looks like this format is correct. I get all of the data I need except for the time. I get the date, but I also need the time. Am I missing something here? Thanks in advance! SELECT TIME, batch_number , P17 , P18 from lmes . V_BATCHENDDATA_12GD where cell like '%12GD%' and P18 = 'Eval' and TIME between TO_DATE( '07/18/2017 11:59:00 PM' , 'MM/DD/YYYY HH:MI:SS AM' ) and TO_DATE( '08/01/2017 11:59:59 PM' , 'MM/DD/YYYY HH:MI:SS AM' );
↧