How To Write an Inner Join with the WHERE Clause in MS SQL Server?

Submitted by: Administrator
If you don't want to use the INNER JOIN ... ON clause to write an inner join, you can put the join condition in the WHERE clause as shown in the following query example:

SELECT l.id, l.url, r.comment
FROM ggl_links l, ggl_rates r WHERE l.id = r.id
GO
<pre>
id url comment
101 www.globalguideline.com The best
102 www.globalguideline.com/html Well done
103 www.globalguideline.com/sql Thumbs up</pre>

Submitted by: Administrator

Read Online MS SQL Server Job Interview Questions And Answers