G
Guest
I've created a simple query which numbers a list with repeated items based on their date
ie., three fields
- creation_dat
- issue_req_no_
- ordernumber count (based on date
I have this
SELECT T.creation_date, T.issue_req_no_s, (SELECT COUNT(issue_req_no_s) FROM Table1 T
WHERE T1.issue_req_no_s = T.issue_req_no_
AND T1.creation_date <= T.creation_date) AS Expr
FROM Table1 AS
ORDER BY T.issue_req_no_s
Its seems to be extremely slow and cause my computer to crash. Its not the computers fault, so whats wrong with my query
thanks
marcus
ie., three fields
- creation_dat
- issue_req_no_
- ordernumber count (based on date
I have this
SELECT T.creation_date, T.issue_req_no_s, (SELECT COUNT(issue_req_no_s) FROM Table1 T
WHERE T1.issue_req_no_s = T.issue_req_no_
AND T1.creation_date <= T.creation_date) AS Expr
FROM Table1 AS
ORDER BY T.issue_req_no_s
Its seems to be extremely slow and cause my computer to crash. Its not the computers fault, so whats wrong with my query
thanks
marcus