|
rs.open "select title, count (*) as c from PE_article where articleid> = 122580 and articleid <= 123583 and deleted <>-2 group by title having count (*)> 1", conn, 1,1
This is reading the title field with duplicate records.
Now when I read the record, I can use rs ("title") to get the value of this field.
Can I also read the value of another field using rs ("aabc")? Can't this be achieved? |
|