Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
insert
into t2
( col_t2_one
, col_t2_two
, ... )
select col_t1_a
, col_t1_b
, ...
from t1
I want to insert all the records from t1 into t2 but the tables have differing fields
t1 has all the fields that t2 has but it could possibly have extra fields too