Good Morning,
I need some example with SQL plus code on various SET operation. But the query have to be with SELECT keyword. For example I am giving a code:
This is the tables of student, location and student location.
select student.sname student_name,location.location Location from student,location,studentlocation where student.s_id=studentlocation.s_id and location.l_id=studentlocation.l_id;
This query will return the result of Student name and their location based on the inserted data.
This exercise was given to us by theVenn diagram.
I need this type of more example so that I can do this type of query of my own.