Viewing 7 posts - 1 through 8 (of 8 total)
I fixed the typo but that made no difference. There is still nothing coming from this.
I am learning this from a book so i don't really know any better, but...
November 29, 2006 at 4:26 pm
I dont' follow you?
Doesn't this pass the value of count to the @HowManyProducts variable?
November 29, 2006 at 1:54 pm
Hi All,
I have been playing with this code and have finally got something that is accepted without any errors. Whats supposed to happen is that when you click on a...
November 29, 2006 at 1:12 pm
HI,
thanks for the code, i still cant this to work i have all sorts of errors popping up, I just cant seem to get this to work. I'm popping out...
November 29, 2006 at 9:42 am
Ok I'll try it and see how i get on. But i may be back for some help 😉
Thanks
Tom
November 29, 2006 at 7:47 am
This is one of them:
-- populate the table variable with the complete list of products
INSERT INTO @Products
SELECT ROW_NUMBER() OVER (ORDER BY ProductID) AS Row,
ProductID, Name, SUBSTRING(Description, 1, @DescriptionLength) + '...'...
November 29, 2006 at 7:41 am
Hi,
Thanks for the reply so what you woul do is declare the table variable, and then create the table, and then you could continue with the code that comes after...
November 29, 2006 at 7:29 am
Viewing 7 posts - 1 through 8 (of 8 total)