briangriffin
Programmer
Table looks like this:
ID Patient Procedure
----------------------------------------
1 John CBC
1 CHEM14
1 PSA
2 Sue CBC
2 CHEM14
3 Frank CBC
I need to return this data but fill in the name field for each record (and there are other blank fields that need to be filled in as well).
I could bludgeon this into something workable, but I would bet that there's a much easier way than what I would do. Typically I dump the data into a variable table, then use an alias of that table to do updates on the original.
Thanks for your ideas.