The symbol dot (.) plays a major role when you write queries It is mainly used to speicify the columns for the respective tables when a join is used as you see in the following example select t1.col1,t1.col2,t2.col3,t2.col4 from table1 as t1 inner join...