Hello:
Here is my MS-SQL statements in dealing with the timestamp field:
select *
from wcps..wcps.policy_header_phrase
where ncci_transaction_code = "01"
AND updt_dt_tm = '20011011'
the field updt_dt_tm is a timestamp field. When I run the above query I received zero records. If I change it to >= I get all the records and I know records exist for 20011011.
What syntax do I use in order for the select to work correctly for a individual date.
Thanks for any ideas.
Here is my MS-SQL statements in dealing with the timestamp field:
select *
from wcps..wcps.policy_header_phrase
where ncci_transaction_code = "01"
AND updt_dt_tm = '20011011'
the field updt_dt_tm is a timestamp field. When I run the above query I received zero records. If I change it to >= I get all the records and I know records exist for 20011011.
What syntax do I use in order for the select to work correctly for a individual date.
Thanks for any ideas.