active questions tagged sql-query - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T08:11:12Zhttp://stackoverflow.com/feeds/tag/sql-queryhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1788678/sql-sub-query-or-inner-join2SQL Sub-query or INNER-JOIN?Hemant Tank2009-11-24T08:32:17Z2009-11-24T09:07:51Z
<p>I've the two following queries:</p>
<pre><code>declare @UserId as int
set @UserId = 1
-- Query #1: Sub-query
SELECT
u.[Id] ,
u.[Name] ,
u.[OrgId] AS Organization,
(SELECT o.[Name] FROM Org o WHERE o.Id = u.OrgId) As OrganizationName,
[UserRoleId] AS UserRole,
[UserCode] AS UserCode,
[EmailAddress] As EmailAddress,
(SELECT SearchExpression FROM SearchCriteria WHERE UserId = @UserId AND IsDefault=1 ) AS SearchCriteria,
(SELECT PageSize FROM UserPreferences WHERE UserId = @UserId) AS UserPreferencePageSize,
(SELECT DrilldownPageSize FROM UserPreferences WHERE UserId = @UserId) AS UserPreferenceDrilldownPageSize
FROM [User] as u
WHERE u.Id = @UserId
-- Query #2: LEFT OUTER JOIN-query
SELECT
u.[Id] ,
u.[Name] ,
u.[OrgId] AS Organization,
(SELECT o.[Name] FROM Org o WHERE o.Id = u.OrgId) As OrganizationName,
[UserRoleId] AS UserRole,
[UserCode] AS UserCode,
[EmailAddress] As EmailAddress,
sc.SearchExpression As SearchExpression,
up.PageSize As PageSize,
up.DrilldownPageSize As DrilldownPageSize
FROM [User] as u
LEFT OUTER JOIN [UserPreferences] as up ON u.id = up.UserId
LEFT OUTER JOIN [SearchCriteria] as sc ON u.id = sc.UserId
WHERE ISNULL(sc.IsDefault,1)=1 AND u.Id = @UserId
</code></pre>
<p><strong>Query execution plan statistics:</strong> (Query cost relative to batch)</p>
<ul>
<li>Query#1 (Sub-Query) : 56%</li>
<li>Query#2 (JOIN) : 44%</li>
</ul>
<p>I thot the sub-query would be optimal because the sub-query will be executed after the WHERE filter is applied. The statistics say the Query#2 - JOIN approach is better.</p>
<p>Pls suggest. Also as a moderate SQL-Server user how can I derive which query is better (anything other then execution-plan, if it is more helpful)</p>
<p>Thank you.</p>
http://stackoverflow.com/questions/1748459/deleting-duplicate-rows-from-table-sql-query3Deleting duplicate rows from table - SQL querysantanu2009-11-17T12:14:39Z2009-11-19T06:28:46Z
<p>I need to delete duplicate rows from the table, like I have 3 duplicate rows in the table, my query will delete 2 rows from 3 duplicated rows.</p>
<p>How can I get this? Please help me.</p>
<p>Thanks</p>