Viewing 4 posts - 1 through 4 (of 4 total)
Tested 'Yay!' with not exists and it works just as good as 1.
I'll be the first to admit that I'm not a SQL master, so I don't know if there...
February 1, 2010 at 2:18 pm
In this case (and correct me if I'm wrong), because you are checking if something doesn't exists, 1 is like true. You don't need to return *, you just want...
February 1, 2010 at 10:16 am
Thats awesome. Somehow I had forgotten about cross joins. If you don't use it you lose it I guess.
So yeah, that'll work perfectly. Thanks a ton
January 29, 2010 at 8:28 am
What if you wanted to send stuff to multiple tables?
<recallitem>
<RecallNum></RecallNum>
<Description></Description>
<Expires></Expires>
<DealerTypeID>1</DealerTypeID>
<Items>
<RecallItems>
<Correction></Correction>
<LaborOp></LaborOp>
<Labor></Labor>
</RecallItems>
<RecallItems>
<Correction></Correction>
<LaborOp></LaborOp>
<Labor></Labor>
</RecallItems>
<RecallItems>
<Correction></Correction>
<LaborOp></LaborOp>
<Labor></Labor>
</RecallItems>
</Items>
<RecallExplain>
<Explaination></Explaination>
</RecallExplain>
</recallitem>
Where you can have multiple recallitems and recallexplain tags. My solution was to write something in vb.net to loop through these...
November 26, 2007 at 7:15 am
Viewing 4 posts - 1 through 4 (of 4 total)