I am trying to update a table in my database. For that I am using a copy activity.Here source dataset is an http api. The data from source is as below.
[
{
"CurrentVal":{
"col":[
{
"@school": yes",
"@theatre":".1"
},
{
"@school":"no",
"@theatre":".1"
}
]
}
}
]
And the target is my sql table. Before updating to table, I need to check whether the input column have any NAN value, Then I need to update null in database column. The copy condition is working. But How this case condition I can add here? How I can achieve this in database?

