I am having table Title with TITLE id,Author ID, Publiser
ID , table AUTHOR with Author ID, Author Name, table
PUBLISER with Pub ID, Pub name Here hot to find out the
publiser id who have relesed the books of patriticular
author?
Answer Posted / vrinda
SELECT t1.PUBID,t3.AuthorName
FROM Publisher t1 join Title t2
on t1.PUBID = t2.PUBID
join Author t3
on t3.AuthorID = t2.AuthorID.
Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
What is molap and its advantage? : sql server analysis services, ssas
Explain features of analysis services?
What is an example of a foreign key?
How to list all triggers in the database with sys.triggers in ms sql server?
What is a raid and what are different types of raid configurations?
Why do we backup Active Directory ?
What is store procedure? When do you use?
Explain what role entity and relationship play in an ER diagram.
What are actions, how many types of actions are there, explain with example? : sql server analysis services, ssas
Explain linked server in sql?
What are system databases into sql server (2005/2008)?
How to write character string constants or literals in ms sql server?
Explain what are the events recorded in a transaction log?
Does sql server 2016 have ssms?
How to replace given values with null using nullif()?