I am experiencing a strange situation as shown below:
I have a huge table in a database called "Table1". Then I duplicate the exact same table with the following code.
Select * into Table2 from Table1
After that, I find that query performance is dramatically different.
Select count (distinct ID) from Table1 takes almost 2 minutes. (Old table)
At the same time, Select count (distinct ID) from Table2 only takes about 10 seconds to complete (New table)
By the way, I found that the data was reordered to newtable after "select into". Also, before you “select” into a new table, the column added to table 1 (old table) (which is a table change, add col1 as col2.)
So how is this going?
(NB: the original version of the question stated that the new table was slow. It was a mistake. In addition, she did not mention the data manipulation in table 1)
Responses to requests for more information
This is the result of Sebastian's code.
SELECT QUOTENAME(OBJECT_SCHEMA_NAME(t.object_id)) + '.' + QUOTENAME(t.name) tbl, s.name stats_name, cols.cols, t.create_date table_date, STATS_DATE(s.object_id, s.stats_id) AS statistics_date, s.auto_created, s.user_created, s.no_recompute, s.has_filter, s.filter_definition FROM sys.tables t LEFT OUTER JOIN sys.stats s ON s.object_id = t.object_id OUTER APPLY ( SELECT STUFF((SELECT ',' + c.name FROM sys.stats_columns sc JOIN sys.columns c ON sc.column_id = c.column_id AND sc.object_id = c.object_id WHERE sc.object_id = s.object_id AND sc.stats_id = s.stats_id ORDER BY sc.stats_column_id FOR XML PATH(''), TYPE ).value('.', 'NVARCHAR(MAX)'), 1, 1, '') cols ) cols
and
SELECT name, compatibility_level, is_auto_close_on, is_auto_shrink_on, state_desc, is_auto_create_stats_on, is_auto_update_stats_on, is_auto_update_stats_async_on FROM sys.databases WHERE database_id = DB_ID();
Actually, I am copying a new table to another database. And the table name is actually called ID2000
The upper image refers to "Table 1" (Database 1) the lower image refers to "Table 2" (Database 2)


Well, since the XML code is too long, here is an alternative listing that followed Hamlet’s advice. I am using SET SHOWPLAN_ALL ON GO instead of pasting all the XML code. Hope this helps.
The red color is the “Table 1” plan, and the black color is the “Table 2” plan. The text in the image is a little small, but zooming out by increasing this page size will simply increase it.
Thank you very much! 
Result SELECT * FROM sys.dm_db_index_physical_stats(db_id(),object_id('YourTable'),NULL,NULL,'Detailed') .
Indeed, there is a huge difference between the two tables. The same, the red color refers to "Table 1" and the other refers to "Table 2"
This problem is quite annoying, driving me crazy because I keep asking myself if I should rebuild the whole table or not. :( 
This is actually rather strange, note that record_count is different. However, when I double-check select COUNT (ID) from id2000 (i.e. calculate the complete rows of data in this table) Both results: 2324798, which is record_count of table_2
In addition, “Table2” was created using the “select * into” statement, I believe that they should both be the same, but now I'm confused.
The above table is the result of the code (Running stat) from Sebastian's code
Result SELECT * FROM sys.dm_db_index_physical_stats(db_id(),object_id('YourTable'),NULL,NULL,'Detailed') .
Indeed, there is a huge difference between the two tables. The same, the red color refers to "Table 1" and the other refers to "Table 2"
This problem is quite annoying, driving me crazy because I keep asking myself if I should rebuild the whole table or not. :( 
This is actually rather strange, note that record_count is different. However, when I double-check select COUNT (ID) from id2000 (i.e. calculate the complete rows of data in this table) Both results: 2324798, which is record_count of table_2
In addition, “Table2” was created using the “select * into” statement, I believe that they should both be the same, but now I'm confused.