Quote Originally Posted by techgnome View Post
you mean like a simple select statement?

select * from someTable where someField = someCriteria?

that's what I use... and then to update:
update tblSomething
set field = newvalue
where someField = someCriteria

-tg
I did the select. And I'm doing the update now, but I want to be able to see the entire row and update it in the designer, to make sure I'm not messing up anywhere. I'd feel a lot more comfortable than running an update.