HI everyone, i have three tables created called cycle1, cycle2 and cycle. I want to union cycle1 and cycle2 and put the results into cycle. All the tables have the same fields. I wrote the query
but am not sure how to put the results in cycle. Thanks.Code:SELECT * FROM cycle1 UNION ALL SELECT * FROM cycle2;