Hello all.
When I run the statement:
select regdate,description,machine_id,machine_nm,status from iris_log.dbo.tb_log_info where regdate like '%23%'
I get the result:
2009-01-23 08:05:06.000
Administration Software is Closed. Operator's Name:admin
But if I do:
select regdate,description,machine_id,machine_nm,status from iris_log.dbo.tb_log_info where regdate like '%-23%'
the result is null...
why?!?!
TIA,
-hdmnp