I need to declare a table variable from another existing table.
If I use "Script table as" will create table variable with [], like
CREATE TABLE [dbo].[CLAIM](
[CLAIMNO] [varchar](20) NOT NULL,
[ACCT] [varchar](4) NOT NULL,
....
Is there a function can return script without [ ]?