Hi All,
I have a query about a replace statement.. Using VFP 6. If I run a select query it retrieves the correct data:
select * from table1 where field1 = 'test' and field2 like 'A%'
however if I run a replace query with the same criteria I get an error 'Command contains unrecognized phrase/keyword':
Replace all field3 with 'abcd' where field1 = 'test' and field2 like 'A%'
What's the problem or how can I replace using like?
I have a query about a replace statement.. Using VFP 6. If I run a select query it retrieves the correct data:
select * from table1 where field1 = 'test' and field2 like 'A%'
however if I run a replace query with the same criteria I get an error 'Command contains unrecognized phrase/keyword':
Replace all field3 with 'abcd' where field1 = 'test' and field2 like 'A%'
What's the problem or how can I replace using like?