I am facing an issue when I am inserting data into table1 by selecting data from table2 like
INSERT INTO table1
SELECT * FROM table2
So there is a column in both table like field1 for which value is null in table2. But in table I have set the default value for field1 after executing ,
INSERT INTO table1
SELECT * FROM table2
I am having null value for field1 insted of getting default value of it what i set.