tags:

views:

24

answers:

1
CREATE TABLE #Report(
Cell int,
CellValue double)

Error here

DECLARE @Report TABLE (
Cell int,
CellValue double)

And here

So ... how to work with virtual table :S and why error

+1  A: 

Try using

DECLARE @Report TABLE ( 
Cell int, 
CellValue float)

Have a look at Data Types (Transact-SQL)

You can try float, real or decimal

astander
works ) solved. thank you
nCdy