What is the difference of a LEFT JOIN and an INNER JOIN
statement? What is a Cartesian product? What causes it?
Answer Posted / janardan baghla
Left join is used to retrieve the non-matching value from
the left table specified at left in query.And inner join or
equi join is used to retrieve the matching rows
only.Cartesian product is used to retrieve the value as
multiplication of the rows from number of tables specified
in query
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
Hi this is the coding for adding data in to an xml table
i want the coding for update and delete
Try
Dim emp_xml_doc As New XmlDocument
If
System.IO.File.Exists(Server.MapPath("emp.xml")) Then
emp_xml_doc.Load(Server.MapPath("emp.xml"))
Dim myrow_element As XmlElement
myrow_element =
emp_xml_doc.CreateElement("EmpDetails")
Dim str As String
str = "
What are type/key pairs in client script registration?
What are sessions used for?
How do you declare static variable? What is its lifetime?
What are the events in a page life cycle?
Is asp net front end or backend?
Can you use c# without .net?
What is the difference between custom web user control and a custom web server control?
What is postback request?
Explain login control and form authentication.
How can we apply themes to an asp.net application?
What is the sequence in which ASP.NET events are processed?
What parameters can you pass in the url of the api? Can get and post use the same url?
Explain how can we inherit a static member?
Can we create a multiple user simultaneously ?