TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Navjot Angra
NA
489
249.6k
Many of u faced this problem (SQL) Many To Many Relationship
Aug 23 2018 12:34 AM
I know after Reading This U will also this about it ,but if u want to know please upvote and help to me to solve
Suppose I have Two tables
Table A=Student
Table B=Department
Table A:
CREATE TABLE student
(
StudentId INT IDENTITY PRIMARY KEY,
Name VARCHAR(255),
DepartmentId VARCHAR(255),
);
INSERT INTO student VALUES ('nav',1);
INSERT INTO student VALUES ('Angra',2);
INSERT INTO student VALUES ('navjot',3);
Table B:
CREATE TABLE department
(
ID INT PRIMARY KEY,
DeptName VARCHAR(255),
studentId int
unique
foreign key references Student(StudentId)
);
INSERT INTO dbo.department VALUES (101, 'CSE', 1);
INSERT INTO dbo.department VALUES (102, 'Mech', 2);
INSERT INTO dbo.department VALUES (103, 'Civil', 1);
Now the Question Is ::
Can I Insert upper values in Table B,
I know Most of u will Say no,
but suppose I have Rquirement To do it how it is possible
without removing
Unique Constraint.
Please If Anybody have any idea ,Please share as soon as poosible
Please upvote this question so that I get good answers from experts ,
Reply
Answers (
5
)
not contained in either an aggregate function or the GROUPby
SSIS Proxy in SQL JOB