we have to try blow query but unable to create pls suggest on this
create table DemoTbl as (select * from TableName where filedName)
Dear @pratikshir,
please try below query
Select * into new_table from old_table
or
SELECT col1, ....., col@ -- <<== select as many columns as you want INTO [New tableName] FROM [Source Table Name]
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.