Viewing 15 posts - 226 through 240 (of 728 total)
Quick answer:
selecta.Empid, a.Empskills+', '+b.Empskills
from#Empa
inner join #Empb on a.Empid = b.Empid
where a.Empskills = 'C' and b.Empskills = 'CPP'
September 24, 2013 at 7:49 am
kevaburg (9/24/2013)
sqlnaive (9/24/2013)
kevaburg (9/24/2013)
sqlnaive (9/24/2013)
September 24, 2013 at 7:11 am
kevaburg (9/24/2013)
sqlnaive (9/24/2013)
September 24, 2013 at 5:23 am
Really Fantastic article. I have been on both sides of it and now working purely as Developer so that helps me having a healthy negotiation with system DBAs. Remember the...
September 24, 2013 at 3:46 am
Very good question. A topic very often left behind. though I was on the wrong side of answers, it definitely cleared basics about the 'guest' login. π
September 23, 2013 at 1:35 am
Thanks Jeff. Nice article.
I came across this function just two days back during some conversion issues. I found some surprisingly different results and thus started playing with it (for...
September 20, 2013 at 11:07 pm
Can anyone please put some light into it ?
float and Numeric are both number data types so why we can't convert the varchar directly to numeric ? The difference between...
September 20, 2013 at 9:35 pm
π No worries Sean. but thanks about the STR functionality. Was playing with it and had fun to know about some things. π
Adding to your command statements, these two works...
September 20, 2013 at 7:47 am
My question remains the same:
float and Numeric are both number data types so why we can't convert the varchar directly to numeric ? The difference between the two being "exact"...
September 20, 2013 at 7:29 am
Thanks Seane. So in order to convert it to numeric/decimal, two conversions have to be done like this:
select convert(numeric(28,8), convert(float, @varchar))
float and Numeric are both number data types so why...
September 20, 2013 at 6:27 am
Andrew Watson-478275 (9/20/2013)
As well as the reference given, this one should be included too:http://msdn.microsoft.com/en-us/library/ms190309(v=sql.105).aspx
Thanks for referring this link Andrew. I had planned to include this link as additional info but...
September 20, 2013 at 3:15 am
I second these guys on security. Windows authentication is best way of providing secuiryt to users. AD group can be defined for group of users requiring saem level of permissions.
September 19, 2013 at 6:56 am
L' Eomot InversΓ© (9/18/2013)
sqlnaive (9/18/2013)
September 19, 2013 at 1:15 am
Viewing 15 posts - 226 through 240 (of 728 total)