I have 2 tables.
Table 1 have few fields and including (email, firstName, lastName, etc ... )
Table 2 have few fields and including (email, name).
I want to write a query which selects all data from table 1 and insert id, email, name (concat firstname + lastname) and insert it in table 2 appropriate columns.
any idea ?