Insert Select Query Results into Another Table

INSERT INTO dbo.Destination
(
FieldOne
,FieldTwo
,FieldThree
,FieldFour
,FieldFive
)
SELECT
FieldOne
,FieldTwo
,FieldThree
,FieldFour
,FieldFive
FROM dbo.Source