Forum Replies Created

Viewing 15 posts - 316 through 330 (of 373 total)

  • RE: Receiving an syntax error

    I thought about that after i typed it, haha, then i thought, i bet he thinks i am loco.. anywany,

    here you go....

    =====================------------------Categories

    if exists (select * from dbo.sysobjects where id =...

  • RE: Receiving an syntax error

    I am not posted data on  a forum before, is there a place for me to do that?

  • RE: Receiving an syntax error

    in other words it is producing doubles of the PROUCT name from the product table and not getting the ProductCategoryName from the Categories table~~~

  • RE: Receiving an syntax error

    It is producing doubles and tripples of that products in the product table and not grabbing the ProductCategoryName for the Categories table.

  • RE: Receiving an syntax error

    HERE is where i am

    ALTER PROCEDURE GetBlindMenuInfoCTaLL

    @IDCompany int

    AS

    SELECT c.CompanyName, c.CompanyID, ca.ProductCategoryName, p.ProductID

    FROM Company C

       JOIN Product P ON C.CompanyId = P.CompanyId

       JOIN Categories CA ON CA.ProductCategoryId = P.ProductCategoryID

    WHERE...

  • RE: Receiving an syntax error

    I have been on this all day yesterday and i am on it again.

    I am not sure what is going on with such a simple query. At this point i...

  • RE: Receiving an syntax error

    ok thanks!

  • RE: Receiving an syntax error

    Do you know that i am still racking my brain on this one.

    MAN if you could help me on this so i can move forward.

    I have posted a picture that...

  • RE: Receiving an syntax error

    I got it. Man i am always tring to make it hard on myself.

    ===============================+++++++++++++

     

    ALTER PROCEDURE

    GetBlindMenuInfoCTaLL

    @IDCompany

    int

    AS

    SELECT DISTINCT

    Company.CompanyID, Company.CompanyName, Company.CompanyLogo, Product

  • RE: Receiving an syntax error

    This is a little better.

     

    ALTER PROCEDURE

    GetBlindMenuInfoCTaLL

    @IDCompany int

    AS

    SELECT DISTINCT Company.CompanyID, Company.CompanyName, Company.CompanyLogo, Product.ProductID, Categories.ProductCategoryID, Categories.ProductCategoryName

  • RE: Receiving an syntax error

    I am receiving an syntax error.

    Syntax Error near 'Where'

     

    ALTER PROCEDURE

    GetBlindMenuInfoCTaLL

    @IDCompany

    int

    AS

    SELECT DISTINCT

    Company.CompanyID, Company.CompanyName, Company.CompanyLogo, Product.ProductID, Categories.ProductCategoryID, Categories.ProductCategoryName

    FROM...

  • RE: Receiving an syntax error

    where id in

  • RE: Receiving an syntax error

    This one took a minute to soak in but i see whats going on with it.

    VERY NICE!

    I see whats going on now let me see i can make that...

  • RE: Receiving an syntax error

    You are the teacher and i am the newbie.

    I am 7 months young to the vb.net sql2000 world. It is just in the last...

  • RE: Receiving an syntax error

    I am pulling only the describe categories from the category table

    Where Categories.ProductCategoryID in (16, 32, 33, 34, 45, 48, 64, 80, 96)

    some times i have to refresh the database or...

Viewing 15 posts - 316 through 330 (of 373 total)