ALTER PROCEDURE EditEmployee (
@RefNo integer ,
@EmpId nvarchar ,
@Name ntext ,
@Designation ntext ,
@Qualification ntext ,
@Gender ntext ,
@DOB date ,
@Address text ,
@Email ntext ,
@Phone decimal)
as
begin
UPDATE Emp_Sample
SET [email protected],[email protected],[email protected],
[email protected],[email protected],
[email protected],[email protected],[email protected],
[email protected]
where [email protected]
END
0
A
回答
2
您需要包括@EmpId nvarchar
大小。
ALTER PROCEDURE EditEmployee (
@RefNo integer ,
@EmpId nvarchar(30) ,
nvarchar [ (n | max) ]
當在數據定義或變量聲明聲明不指定n,則默認長度爲1.當不與CAST
功能指定n,則默認長度爲30
0
相關問題
- 1. 這種情況有什麼作用?
- 2. 有什麼用在這種情況下
- 3. 這種情況有什麼問題?
- 4. 這兩種情況有什麼區別?
- 5. 爲什麼在這三種情況下
- 6. 「:」在這種情況下做什麼?
- 7. sched_yield在這種情況下做什麼?
- 8. 爲什麼是這種情況gc
- 9. 這種情況測試是什麼?
- 10. 什麼是在這種情況下
- 11. *在這種情況下做什麼?:
- 12. 爲什麼在這種情況下
- 13. .map()在這種情況下做什麼?
- 14. 爲什麼會發生這種情況?
- 15. UnboundLocalError。爲什麼發生這種情況?
- 16. 什麼是在這種情況下
- 17. 什麼在這種情況下
- 18. 爲什麼在這種情況下
- 19. 爲什麼QWebFrame :: evalutateJavaScript在這種情況下什麼都不做?
- 20. &&在這種情況下有什麼不同?
- 21. 這種情況下最好的情況是什麼?
- 22. 存在的對象,什麼會在這種情況下發生
- 23. 什麼時候在這種情況下實例化對象?
- 24. 在這種情況下,「對象」是什麼意思?
- 25. 爲什麼'這'不是它在這種情況下應該是什麼?
- 26. 爲什麼不能'和'在這種情況下有這樣的操作數?
- 27. 什麼是光標,它在做什麼(在這種情況下)?
- 28. 什麼是wrapper_descriptor,在這種情況下爲什麼是Foo .__ init __()?
- 29. 這種情況下SQL查詢有什麼問題?
- 30. mysql沒有連接,但爲什麼會發生這種情況
是EmpId的類型和@EmpId相同嗎? – Miller
你面臨什麼問題? –
@MillerKoijam是的,這是相同的 – Jan