Forum Replies Created

Viewing 3 posts - 61 through 63 (of 63 total)

  • RE: Help with TOP clause

    That works, too! Thanks 😀

  • RE: Help with TOP clause

    Thanks! That works great on the sample. Now I'll try to implement in with my "real" tables and data and see what happens.:-D

  • RE: Help with TOP clause

    Here are some very basic schemas with a small amount of data:

    CREATE TABLE testInventoryTran(

    IntTranIDVARCHAR(10)NOT NULL,

    IntLineINTEGERNOT NULL,

    IntLotIDVARCHAR(10)NOT NULL)

    CREATE TABLE testBarrelCount (

    BrcTranIDVARCHAR(10)NOT NULL,

    BrcLineINTEGERNOT NULL,

    BrcBarrelCountINTEGERNOT NULL)

    CREATE TABLE testBarrels (

    BrlBarrelIDVARCHAR(10)NOT NULL,

    BrlLotIDVARCHAR(10)NOT NULL,

    BrlDateDATETIMENOT NULL)

    INSERT INTO...

Viewing 3 posts - 61 through 63 (of 63 total)