Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

updating flag

Former Member
0 Likes
416

for all records in ztable where flag is 'I' set flag as 'X'

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
392

Hi,

Please try this.


UPDATE ZTABLE
SET FLAG = 'X'
WHERE FLAG = 'I'.

Regards,

Ferry Lianto

for all records in ztable where flag is 'I' set flag as 'X'

2 REPLIES 2
Read only

suresh_datti
Active Contributor
0 Likes
392

try

updata ztable set falg = 'X'

where flag = 'I'.

~Suresh

Read only

Former Member
0 Likes
393

Hi,

Please try this.


UPDATE ZTABLE
SET FLAG = 'X'
WHERE FLAG = 'I'.

Regards,

Ferry Lianto