开发者

Virtual table

开发者 https://www.devze.com 2022-12-21 18:11 出处:网络
CREATE TABLE #Report( Cell int, CellValue double) Error here DECLARE @Report TABLE ( Cell int, CellValue double)
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

精彩评论

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