Viewing 15 posts - 1,336 through 1,350 (of 3,482 total)
Jack,
Luis' answer fixed it. This is the query I ended up using that worked for me:SELECT candidate_id, first_name, last_name
FROM Candidate AS c
WHERE (NOT...
February 8, 2018 at 5:52 pm
Super cool, Luis! Many graces!
This worked:SELECT candidate_id, first_name, last_name
FROM Candidate AS c
WHERE (NOT EXISTS
(SELECT 1 AS Expr1
FROM Candidate...
February 8, 2018 at 4:40 pm
Oh, super handy! Thanks for asking... I was playing with the SSRS end of this... Getting the count of selected values is easy in SSRS. It's the passing that back...
February 8, 2018 at 12:24 pm
Jack,
I asked a question about how to do this in another forum. Check this out:
https://www.sqlservercentral.com/Forums/1922517/EXISTS-ALL#bm1922645
February 8, 2018 at 11:25 am
Jason,
Wow. I'll take a while to get my head around all this. Say I'm using SSRS as a front end to this - Essentially "Show me all candidates that...
February 8, 2018 at 10:57 am
Exercised my Google-fu... Relational division, anybody?
https://stackoverflow.com/questions/15977126/select-rows-that-match-all-items-in-a-list
February 7, 2018 at 6:46 pm
I'm working on it... In T-SQL, it would be like this:
(Yes, I'm aware that this table design of Candidate is silly!!!)
.CREATE TABLE Candidate(
CandidateID INT...
February 7, 2018 at 5:55 pm
One thing to do is go find the local SQL Server User Group and go to the meetings. Open positions are often announced at the beginning of each meeting. If...
February 7, 2018 at 11:47 am
Sue,
Okay, I'll try it and post back when/if I get it working with what I tried. Seems odd that MS can't keep this stuff straight.
Almost glad I'm not...
February 6, 2018 at 3:28 pm
Lynn Pettis wrote a quick article on a bunch of useful date functions. It's here:
http://www.sqlservercentral.com/blogs/lynnpettis/2009/03/25/some-common-date-routines/
February 6, 2018 at 11:38 am
I think I will. I could do the install once more (Imagine whiny kid voice "Again????!!!"), but once it's scripted, e-mail script to myself (or similar). Then I can just...
February 5, 2018 at 10:45 am
Sue,
Last question, since IT'S WORKING!!!
I know it's possible to script an install of SQL Server with a config file, but can I basically do it backwards (clone an...
February 5, 2018 at 9:30 am
The script wasn't for you, it was for the people trying to help you. Since you're new, I think you should read Jeff Moden's article on how to...
February 4, 2018 at 10:19 pm
So what's the answer supposed to be? What should the query return?
Here's how to post sample data...CREATE TABLE RouterData (
RouterName char(2),
A char(4),
B...
February 4, 2018 at 7:37 pm
Viewing 15 posts - 1,336 through 1,350 (of 3,482 total)