Viewing 8 posts - 1 through 8 (of 8 total)
Yes, it is the same query, I changed the condition, 'coz I needed reverse checkes....
My second Q is still unanswered:
Which way is better performace wise??
July 7, 2008 at 6:28 am
In my previous post: "Will all joins and where clauses be also applied on inner subqyuery for calculating CalculatedQty?"
I actually mean to say: all where and join clauses must also...
July 7, 2008 at 5:52 am
I tried this, it worked, Thanks Hari.
I do have few q now:
1. In real scenarions, I have many where and join clauses. e.g, I also want to filter lines
based on...
July 7, 2008 at 5:49 am
Or the problem can be interpreted in words as:
My application creates Purchase orders for items with some quantity and these purchase orders have some Expect date. This date represents when...
July 7, 2008 at 2:41 am
e.g., my sample table and values are like:
create table purchase_orders
(order_ID uniqueidentifier,
Basequantity decimal,
Expect_date datetime)
insert into purchase_orders
values
(newid(), 20, '2008-07-31 00:00:00.000')
insert into purchase_orders
values
(newid(), 10, '2008-07-31 00:00:00.000')
insert into purchase_orders
values
(newid(), 10, '2008-07-06 00:00:00.000'),
now first...
July 7, 2008 at 2:32 am
Viewing 8 posts - 1 through 8 (of 8 total)