what is JOIN? Give example & types of join?
Answer Posted / vijay
Join:-
Join are used to retrieve data from more than one
table simultancously .
Types of join are:-
1.Outer join
*--Right Outer join
*--Left Outer join
*--Full Outer join
2.Multiple join
3.self join
4.Inner join
5.cross join
| Is This Answer Correct ? | 18 Yes | 6 No |
Post New Answer View All Answers
How do you insert a table?
What are the technical specifications of mysql?
Is there a free version of mysql?
How do you create a primary key?
What are the differences between char and varchar?
How to create a new table in mysql?
How can we get total number of records by query in mysql?
What is mysql_pconnect?
How can you change the password of a mysql user?
What is database clustering in mysql?
What is triggers?
Please can the SQL code below be interpreted IF @xMatchCriteria='MATCH12' BEGIN IF EXISTS (Select * from #InsightData where (EmailAddress=@xDCPEmailAddress ) ) BEGIN SET @xTestMatchCriteria = @xMatchCriteria; SELECT @xCRMCustomerId=CustomerId, @xCRMDcpCustomerId=DcpCustomerId, @xCRMPortalCustomerID=PortalCustomerID,@xCRMDcpID=DcpID, @xCRMCardNumber=CardNumber, @xCRMEmailAddress=EmailAddress, @xCRMfirtLetterFirstName=firtLetterFirstName, @xCRMLastName=Surname,@xCRMAddressLine1=AddressLine1, @xCRMPostCode=PostCode FROM #InsightData where (EmailAddress=@xDCPEmailAddress ) END ELSE BEGIN SET @xTestMatchCriteria='No'+@xMatchCriteria; END END
How show all tables in mysql query?
Why do you think it is advised to not to use guid and character columns as clustered index arrays?
What is the limitation of mysql?