我有一个使用一个参数的查询。但我需要附加一些默认常量值,例如this is footer.
或任何其他参数。
你能帮帮我吗?
答案 0 :(得分:1)
假设 SELECT name
FROM students
WHERE ID IN ( select studentid from scores where marks=20) ;
是字符串类型日期。要在日期中添加常量字符串,可以在存储过程中使用以下脚本
FromDate = '2016-11-03'
OR
SET FromDate = CONVERT( DATETIME, '2016-11-03',101 )
这将存储SET FromDate = CAST( '2016-11-03' AS DATETIME )