Forum Replies Created

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

  • RE: Seemingly simple select question

    If I run

    declare @Price table (

    PriceID int,

    UnitPrice money

    );

    declare @PriceGroup table (

    PriceID int,

    DescriptionID int

    );

    declare...

  • RE: Seemingly simple select question

    Well, this works, but it somehow seems flimsy. Is there a better way of doing this?

    declare @Price table (

    PriceID int,

    UnitPrice money

    );

    declare @PriceGroup...

  • RE: Seemingly simple select question

    Yeah, my question was a bit vague; Sorry about that.

    The basic operation of this will (should) be:

    1. Customer selects a combination of 3 attributes, as shown in the Description.Code...

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