Viewing 15 posts - 871 through 885 (of 3,489 total)
If I sequence the Work Orders somehow, I could use one of those dreaded cursor things... then I could do something like this:
September 25, 2019 at 10:23 pm
DELETE FROM TableA
WHERE EXISTS (SELECT 1
FROM TableB
WHERE TableB.DeleteDate = TableA.RecDate);
?
I guess I should have asked what you tried.
September 24, 2019 at 6:20 pm
This is a "note to self", I guess, so...
Self,
this is as far as I have gotten. it's not quite right maybe, because I have yet to figure out how to...
September 24, 2019 at 6:11 am
I think you're making this harder than it really is. What specifically are you trying to learn? What kind of SQL questions are you trying to answer that you don't...
September 24, 2019 at 3:59 am
I would do the stairways in order. They're ordered in increasing complexity, generally.
Or are you asking how to order the stairways?
What are you trying to learn?
September 24, 2019 at 3:38 am
Why not take them in order? (Or am I missing something?)
September 24, 2019 at 3:23 am
Could you explain in words what you're trying to do? What's your expected output?
September 24, 2019 at 1:20 am
Steve.
I have a question about the rCTE example. In the rCTE, the Product Assembly is "decomposed" into parts, which is then decomposed again (in the rCTE)… but how do you...
September 23, 2019 at 5:47 pm
Do you have some sample data?
CREATE TABLE scripts, INSERT scripts, please.
September 20, 2019 at 11:04 pm
a heap is a table without an index - it's unordered. You can't reorder something that's not ordered by an index.
September 20, 2019 at 7:03 pm
Okay, sorry everybody. I found out that the question was way easier than I thought. (That's what happens when you don't get scripts to recreate the tables and data and...
September 20, 2019 at 3:44 am
I'm an Aspie too, so I can kind of see where David is coming from. talking to "paper" or typing on a computer might be easier because there's so much...
September 19, 2019 at 5:47 pm
I think I remember your article about "Find all pilots that can fly all the planes" question. (Yep, that's the one!)
Is there a way to process the "build orders" without...
September 19, 2019 at 3:00 am
Wouldn't you declare a variable to hold the filename and then use .NET functions to parse out the chunks you want that make a date? Then compare it to some...
September 17, 2019 at 11:50 pm
If you're trying to get a count of enrollments for each day, then you would need a Calendar table of some kind. Are you trying to count the number of...
September 16, 2019 at 3:59 am
Viewing 15 posts - 871 through 885 (of 3,489 total)