delphidestructor
Programmer
- Oct 20, 2000
- 67
CREATE PROCEDURE testdynamtable
AS
set nocount on
declare @tmpcolname varchar(20)
set @tmpcolname = 'col1'
create table #tmptable (@tmpcolname int)
^
|
How do I do this?
GO
Mike
AS
set nocount on
declare @tmpcolname varchar(20)
set @tmpcolname = 'col1'
create table #tmptable (@tmpcolname int)
^
|
How do I do this?
GO
Mike