Viewing 15 posts - 106 through 120 (of 898 total)
Thanks for the link Sean. That explains it really well.
I was surprised when I saw the plan initially but now I am clear.
June 26, 2013 at 5:11 am
techmarimuthu (6/25/2013)
i have data in this format only
Is there no way you can change it or make somebody else change it?
techmarimuthu (6/25/2013)
June 26, 2013 at 12:46 am
techmarimuthu (6/25/2013)
(
id int identity,
firstname varchar(30),
lastname varchar(40),
dob int
)
insert into members(firstname,lastname,dob) values ('Michel','David',19890630)
insert into members(firstname,lastname,dob) values ('Raja','Kumar',19900625)
insert into members(firstname,lastname,dob) values ('Rahul','Sundar',19910501)
insert into members(firstname,lastname,dob) values ('Arun','Edward',19901219)
i wanna...
June 25, 2013 at 8:20 am
We would definitely need more information to help you
Please explain the issue a bit more and also provide the DDL of the tables involved, some sample data and the expected...
June 25, 2013 at 8:08 am
This doesn't look difficult and it would be good if you try this yourself
If you are stuck somewhere, we would like to see what you have tried and where exactly...
June 25, 2013 at 8:04 am
I am not really sure about the output you are expecting
It would help if you can provide DDL of the table involved with some sample data and the expected results...
June 25, 2013 at 6:52 am
Adarsh Chauhan (6/25/2013)
select * from Orderswhere isnull(order_amt,0) =0
or
select * from Orders
where order_amt is null or order_amt = 0
This is exactly the opposite of what the OP wants
June 25, 2013 at 6:38 am
You have been here for some time now.
I expect you to help us with some DDL of the tables involved, some sample data and the expected results based on the...
June 25, 2013 at 6:34 am
Will this work?
WHERE table.AdminDate <= @startdate AND ( table.DischargeDate >= @enddate OR table.DischargeDate IS NULL )
June 21, 2013 at 3:25 am
Hugo Kornelis (6/21/2013)
First, let's look at the internals. Operators...
June 21, 2013 at 3:14 am
Neil.McKinnon (6/20/2013)
You were right Kingston!Big thank you to Abu and yourself for your invaluable help! All working as intended!!
Many thanks
Neil
Glad we could help you out 🙂
June 20, 2013 at 8:39 am
meltingchain (6/20/2013)
--===== If the test table already exists, drop it
IF OBJECT_ID('TempDB..#mytable','U') IS NOT NULL
...
June 20, 2013 at 8:27 am
Duplicate post. Please direct all the replies here
http://www.sqlservercentral.com/Forums/Topic1465520-391-1.aspx
June 20, 2013 at 7:10 am
Do you want to exclude the IP addresses only when a machine has more than 1 assigned?
What if there is a machine which has only one IP address assigned and...
June 20, 2013 at 6:54 am
knakka99 (6/20/2013)
I appreciate your help 🙂
Also I have an...
June 20, 2013 at 6:46 am
Viewing 15 posts - 106 through 120 (of 898 total)