Viewing 8 posts - 1 through 8 (of 8 total)
Thank you, Dave. Maybe I’ll use your solution in other report.
Thank you, Chris. Your solution made sense for me.
:satisfied:
July 1, 2011 at 9:20 am
Sorry, I try to explain better. Forgive my English.
I have developed a report with CrystalReports, based directly on tables, and I solved the problem. But now I have to do...
July 1, 2011 at 9:11 am
I have to do a report which has to have parameter year(@deparr)
Then the procedure has to be something like that
CREATE PROCEDURE usp_GetT
year(@deparr) smallint
AS
....
And how/when to write @Type?
July 1, 2011 at 8:33 am
The records are:
JNr Type
24 Cust
24 A
24 A
25 A
25 A
25 A
25 A
26 Cust
27 A
27 A
so will be
JNr Type
25 A
25 A
25 A
25 A
27 A
27 A
I am at home and I can't...
June 22, 2011 at 9:27 am
so definitely saying WHERE Type = 'Cust' means the query retrives records when WHERE Type <> 'Cust'?
June 22, 2011 at 9:13 am
Sorry
More I'm interested what retrieves the first LEFT OUTER in the table not_these;
LEFT OUTER
JOIN ( SELECT Substring(Cost,4,7) AS JNr
FROM Ch
WHERE Type = 'Cust' ) AS not_these
ON not_these.JNr =...
June 21, 2011 at 2:34 pm
Viewing 8 posts - 1 through 8 (of 8 total)