开发者

Virtual table

CREATE TABLE #Report(
Cell int,
CellValue double)

Error here

DECLARE @Report TABLE (
Cell int,
CellValue double)

And here

So ... how to 开发者_C百科work with virtual table :S and why error


Try using

DECLARE @Report TABLE ( 
Cell int, 
CellValue float)

Have a look at Data Types (Transact-SQL)

You can try float, real or decimal

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜