Viewing 7 posts - 1 through 7 (of 7 total)
If i wanted to Assign the Manager without a team to the team without a manager on a 1 year contacts
ive got as far as ?
UPDATE tbl_teams SET
Manager_ID =...
January 27, 2012 at 2:39 am
something like this?
SELECT Manager_ID FROM tbl_Managers
WHERE Manager_ID NOT IN
( SELECT Manager_ID FROM tbl_Teams WHERE Manager_ID IS NULL)
January 26, 2012 at 3:34 pm
something like this?
SELECT Manager_ID FROM tbl_Manager
January 26, 2012 at 3:33 pm
yes, i see what you mean regarding the first one
however im stuck with how to use JOIN on the second one
January 26, 2012 at 3:08 pm
great thanks - i had one more question if thats ok
if i had to select the managers without a team ??
i can see this manager_id is...
January 26, 2012 at 2:47 pm
or even
SELECT Team_Name FROM tbl_teams WHERE Manager_ID = 'NULL';
January 26, 2012 at 2:30 pm
Thanks for the quick reply
so would something like this work?
SELECT Manager_ID FROM tbl_Teams WHERE value='NULL';
January 26, 2012 at 2:28 pm
Viewing 7 posts - 1 through 7 (of 7 total)