sql server 存储过程 语句

CREATEPROCEDURE[dbo].[P_GetTrainListByPlace]--Addtheparametersforthestoredprocedurehe... CREATE PROCEDURE [dbo].[P_GetTrainListByPlace]
-- Add the parameters for the stored procedure here
@vc_FromPlace varchar,
@vc_ToPlace varchar
AS
BEGIN
-- SET NOCOUNT ON added to prevent extra result sets from
-- interfering with SELECT statements.
SET NOCOUNT ON;

-- Insert statements for procedure here
if(@vc_FromPlace is null)
begin
SELECT * from [tb_Train] where vc_FromPlace =@vc_FromPlace
end
else if(@vc_ToPlace is null)
begin
SELECT * from [tb_Train] where vc_ToPlace =@vc_ToPlace
end
else
begin
SELECT * from [tb_Train] where (vc_FromPlace =@vc_FromPlace) and (vc_ToPlace =@vc_ToPlace)
end

END

======================================================
请看看我写的对不?

为什么执行了却没有显示数据?
展开
 我来答
smarthui5
2009-12-18
知道答主
回答量:43
采纳率:0%
帮助的人:29.1万
展开全部
格式没错
if(“@vc_FromPlace is null”)
begin
SELECT * from [tb_Train] where“ vc_FromPlace =@vc_FromPlace”
end --如果你的变量名为空,你还要查找变量满足该变量的的数据,当然没数据显示了
以下那个也一样
今至电子科技有限公司
2024-08-23 广告
数据库备份是确保数据安全与业务连续性的关键环节。我们上海今至电子科技有限公司高度重视数据保护,定期执行全面的数据库备份策略。这包括使用先进工具和技术,对关键业务数据进行自动化备份,并存储在安全可靠的外部存储介质或云端。通过定期验证备份的完整... 点击进入详情页
本回答由今至电子科技有限公司提供
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式