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


Please Help Members By Posting Answers For Below Questions

Differentiate between delete and truncate.

656


What is forward - only cursors / read only cursor?

626


How to add more data to the testing table in ms sql server?

643


What are the difference between data mart and data warehouse? : sql server analysis services, ssas

598


What is logshipping and its purpose?

636






What is sql server database?

579


Can we insert data into view sql server?

616


Why use identity in sql server?

637


What is the difference between dbcc indexdefrag and dbcc reindex?

613


Explain trigger classes i.e. Instead of and after trigger?

567


Mention what are the core components of ssrs?

233


How to convert a numeric expression from one data type to another?

610


What are the tables in sql?

705


What is difference between standardization and normalization?

631


What are the different types of sub-queries?

684