So I'm trying to get the one mean value of three columns from my table. I had to use the three columns because the intial SQL statement uses an outer join on a single table three times to pull three different values. I'll Provide an example of the data below:
C1 C2 C3
Row 1 200
Row 2 250
Row 3 210
Row 4 290
Row 5 280
Row 6 300
ID LIKE THIS INFORMATION TO BE AVERAGED INTO ONE FIELD INSTEAD OF THREE SEPERATE AVERAGES. THE BLANK AREAS ARE NULL VALUES.
C1 C2 C3
Row 1 200
Row 2 250
Row 3 210
Row 4 290
Row 5 280
Row 6 300
ID LIKE THIS INFORMATION TO BE AVERAGED INTO ONE FIELD INSTEAD OF THREE SEPERATE AVERAGES. THE BLANK AREAS ARE NULL VALUES.