I'm trying to clean some data in Azure ML. I have an Apply SQL Transform block with the following code in it:
UPDATE t1
SET CreditScore = -1
WHERE CreditScore>900;
It is a numeric column. When I visualize the output, there are 0 rows and 0 columns. Going into the block there are 225k rows. Anybody have a clue what is going on?