Viewing 15 posts - 181 through 195 (of 15,381 total)
A little bit of formatting, aliases and proper syntax you query might look like this.
SELECT p.LastName
, p.FirstName
, d.DeptName
from Professor p
INNER JOIN Department d ON d.DeptCode = p.DeptCode
Where...
April 1, 2019 at 1:31 pm
haha I saw the same thing.
April 1, 2019 at 1:27 pm
March 29, 2019 at 12:55 pm
March 28, 2019 at 8:31 am
As a few have pointed out this may or may not work the same depending on the version. It has also long been the standard for the QOTD that unless...
March 28, 2019 at 7:12 am
March 21, 2019 at 9:09 am
This is just wrong on many levels. The insert doesn't "do nothing". It is however unable to complete because there is a transaction in progress. Once the transaction is resolved...
March 21, 2019 at 7:23 am
March 18, 2019 at 7:29 am
I know, huh? I can't believe that any company would...
March 18, 2019 at 7:27 am
I've been using the following and it's proved successful.
WHERE LEN(SSN) <> 9
OR LEFT(SSN,1) IN ('8')...
March 12, 2019 at 8:33 am
Gosh MS really has made this one fun. My version is 12.0.2000.8 and it...
March 8, 2019 at 2:52 pm
Wouldn't this behavior depend on...
March 8, 2019 at 12:39 pm
Viewing 15 posts - 181 through 195 (of 15,381 total)