-
1
- #1
We are in process of testing an application originally developed in ADO/Access 97 in ACCESS2000. I noticed the following behaviour on the following query :
UPDATE <table1> A
SET A.<COL1> = <some_value>
where
<table1>.Key = ( select <table2>.key
from <table2>
where <table1>.key = <table2>.key
and <table2>.description like 'ABC%' )
This query works fine with Access97/ADO 2.1, but fails to update any rows in ACCESS2000.
Strangely, if I modify the like clause in the above query to read " LIKE 'ABC*' " it works fine in ACCESS2000.
I am at a bit of a loss on this one - but I am sure someone must have encountered this before me if I am not missing something obvious.
Will appreciate any help
UPDATE <table1> A
SET A.<COL1> = <some_value>
where
<table1>.Key = ( select <table2>.key
from <table2>
where <table1>.key = <table2>.key
and <table2>.description like 'ABC%' )
This query works fine with Access97/ADO 2.1, but fails to update any rows in ACCESS2000.
Strangely, if I modify the like clause in the above query to read " LIKE 'ABC*' " it works fine in ACCESS2000.
I am at a bit of a loss on this one - but I am sure someone must have encountered this before me if I am not missing something obvious.
Will appreciate any help