Sultan Liked 2 Years ago through
Blogs | 1 Point
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 t...