Sql-Server Insert select result into another table

علی ذوالفقار
1402/11/18 20:24:57 (49)
INSERT INTO 
    NewTable (Field1,Field2) 
SELECT
    FName
    , LName
FROM
    OldTable
WHERE
    City IN ('Tehran', 'Gilan')        
Back