I've one table Car as below
Car_ID | Car_Name
Sample data
Car_ID Car_Name
1 Honda City
2 Ferrari
3 Mercedes
4 Rolls Royce
I've data in Car table. Now i've other table Car_Detail as below
Car_Detail_ID | Car_ID | Car_Color
Now i've to insert data into Car_Detail from Car where Car_Color will be default value. How to achieve this in single statement ?
Expected result
Car_Detail_ID Car_ID Color
1 1 Red
2 2 Red
3 3 Red
4 4 Red
EDIT
Sample Data
Car Table
Car_ID Car_Name
1 Honda City
2 Ferrari
3 Mercedes
4 Rolls Royce
Color Table
Color_ID Color_Name
1 Red
2 Yellow
3 Blue
4 Green
Expected Result
Car_Detail_ID Car_ID Color_ID
1 1 1
2 2 1
3 3 1
4 4 1
5 1 2
6 2 2
7 3 2
8 4 2
9 1 3
10 2 3
11 3 3
12 4 3
13 1 4
14 2 4
15 3 4
16 4 4