bartsimpson
IS-IT--Management
I have written a view that lists data, and divides one column by another to give me a new column. This works for the first 16 rows of data, but when it hits row 17, I get a divide by zero error. There is no zero in the divisor column.
The SQL is below :
This always happens on row 17, but I see no real difference between row 16 and row 17 data.
The SQL is below :
Code:
SELECT volts AS [Voltage Ave], [Noise sum] / [noise count] AS Noise
FROM dbo.data
This always happens on row 17, but I see no real difference between row 16 and row 17 data.