在创建存储过程时遇到问题
问题描述:
i有3个表数据,sort,fullsort
数据表的列(lot_no,类型,形状,大小) ,地方,重量,dt)
sort(lot_no,名称,类型,形状,大小,地点,重量,issue_dt)
fullsort(lot_no,名称,类型,形状) ,大小,地点,重量,issue_dt,return_dt)
i创建了以下存储过程
i have 3 tables data,sort,fullsort
the columns for data table(lot_no,type,shape,size,place,weight,dt)
sort(lot_no,name,type,shape,size,place,weight,issue_dt)
fullsort(lot_no,name,type,shape,size,place,weight,issue_dt,return_dt)
i have created the following stored procedure
答
你的存储过程期望参数@weight是一个浮点数,你传递一个字符串。
Your stored procedure is expecting the parameter @weight to be a float, and you are passing it a string.