Viewing 15 posts - 1 through 15 (of 103 total)
Hi,
Yes that solves the problem. yes ID is unique identifier and Non Null
November 13, 2013 at 4:17 pm
Hi what was Your solution? It would be good if you can share one.
I may have similar situation in future.
Thanks
November 13, 2013 at 2:21 pm
IF SMINO = ID then I want to update IMEI number of that raw to update where SIMNo matched.
ex. Raw 1 & 2 's IMEI number should be updated...
November 12, 2013 at 9:33 pm
Phew that took me about 10 minutes to do calculation on my mind.
Great question.
November 10, 2013 at 8:20 pm
Or if your duplicate records keep coming via user input then you can create view with select distinct.
November 4, 2013 at 4:06 am
Great question
It's easy to get lost between Nested Transactions specailly when we use same naming for SAVE point & TRAN.
+1
October 28, 2013 at 6:33 pm
SELECT CONVERT(INT,ROUND(<YourColumnName>,0)) FROM <yourtable>
October 22, 2013 at 4:41 pm
If you try grouping order id and partkey with count(*) that should give you number of unique combination of order id and part key.
If you want 1 2 3 next...
October 22, 2013 at 3:25 pm
Good question. Any one know why it returns 1 for some/most of special characters?
October 14, 2013 at 8:58 pm
Following query will get you result for
Return the number of sales by product category where the average recommended price is
R10 or more
SELECT COUNT(S.SalesID)
FROM tblSales AS s
INNER JOIN tblProducts...
October 4, 2013 at 12:15 am
Good one should have included DISTINCT to make it more confusing.
July 25, 2012 at 7:28 pm
Thanks All,
It works. Yes all the codes are separated by spaces at this stage but in future they may appear with other delimiter.
I was trying like '%[b.billing_code]%' and it...
May 10, 2012 at 2:42 am
Oh Man how did I got this wrong I read this reference article not so long ago !! (a month may be) Time to refresh my knowledge....
Great question Ron....
May 8, 2012 at 9:19 pm
vinu512 (5/7/2012)
Select * From Ex
Where DEPTNO In (Select DEPTNO From Ex Where ENAME = 'SCOTT')
Edit:
If you Don't want Scott in the result set then you can edit the...
May 7, 2012 at 7:54 pm
Hmmm knew the order but didn't know that we can't use alias in Where clause.
May 7, 2012 at 7:33 pm
Viewing 15 posts - 1 through 15 (of 103 total)