change datatable one column value without loop

  • Thread starter Thread starter Deep
  • Start date Start date
D

Deep

Hi,
I have one datatable of 3 column. How to change one column value of
datatable in upper case without using loop.

Thanks in advance.
 
I have one datatable of 3 column. How to change one column value of
datatable in upper case without using loop.

You can't. But you could run an UPDATE statement against the table directly,
assuming your DBMS supports a function like UPPER().
 
Back
Top