What are the guidelines for joins?- Join condition should ideally be written in the FROM clause. - There should be no ambiguity in the column names to be joined. - Depending on requirement, the type of JOIN should be chosen. - To increase performance, one can limit the number of rows to be joined. - Ideally, join tables with columns having same data type, width etc. - Avoid joining tables with columns having few unique values.
|