pl/sql function called how many times?

Viewed 3753

Assume you have the following update:

Update table set col1 = func(col2)
where col1<>func(col2)

The func function is evaluated two times for every row, or once for every row?

Thanks,

3 Answers
Related