Skip to content

Tag: join

SQL Joins for Multiple Fields with Null Values

I have a table of maintenance requirements and associated monthly frequency it is to be performed maint I also have a table of equipment with data on its manufacturer, model, device type and building. equip I am trying to match each maintenance requirement with its associated equipment. Each requirement appli…

Understanding where clause vs join

Can somebody explain the difference between below query examples. select column1,column2 from table1 join table2 on table1.columna = table2.columna and columna=’1234′ vs select column1,…