What is this warning

  • can any body tell be about this warning.

    what it is any why it comes

    Null value is eliminated by an aggregate or other SET operation.

    Thanks

  • When you use an aggregate function, the null values in the columns are ignored.

    eg: Avg(Price), if Price column has a null, it is ignored

  • Thanks

  • If the warning is causing problems, just do an "Is not Null" on the Aggrated value in the where clause. I know some .asp code really does not like warning messages very much. Some times the page will think there was an error, so you have to get rid of the warnings.

Viewing 4 posts - 1 through 3 (of 3 total)

You must be logged in to reply to this topic. Login to reply