Viewing 15 posts - 316 through 330 (of 373 total)
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 =...
June 30, 2005 at 9:07 am
I am not posted data on a forum before, is there a place for me to do that?
June 30, 2005 at 8:57 am
in other words it is producing doubles of the PROUCT name from the product table and not getting the ProductCategoryName from the Categories table~~~
June 30, 2005 at 8:56 am
It is producing doubles and tripples of that products in the product table and not grabbing the ProductCategoryName for the Categories table.
June 30, 2005 at 8:45 am
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...
June 30, 2005 at 8:39 am
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...
June 30, 2005 at 8:35 am
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...
June 29, 2005 at 8:45 pm
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
June 29, 2005 at 4:43 pm
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
June 29, 2005 at 4:08 pm
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...
June 29, 2005 at 3:59 pm
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...
June 29, 2005 at 3:41 pm
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...
June 29, 2005 at 3:19 pm
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...
June 29, 2005 at 3:05 pm
Viewing 15 posts - 316 through 330 (of 373 total)