Pergunta de entrevista da empresa Give

What is deadlock? What is inner join in sql? Difference between server.transfer and response.redirect?

Resposta da entrevista

Sigiloso

4 de ago. de 2019

Deadlock describes a situation where two or more threads are blocked forever, waiting for each other. The INNER JOIN selects all rows from both participating tables as long as there is a match between the columns. An SQL INNER JOIN is same as JOIN clause, combining rows from two or more tables. Syntax: SELECT * FROM table1 INNER JOIN table2 ON table1.column_name = table2.column_name; or SELECT * FROM table1 JOIN table2 ON table1.column_name = table2.column_name; The Response.Redirect method redirects a request to a new URL and specifies the new URL while the Server.Transfer method for the current request, terminates execution of the current page and starts execution of a new page using the specified URL path of the page.