1327-Undeclared variable:amount

本文通过一个具体的SQL代码示例,展示了如何正确地使用变量来避免常见的编程错误。特别是针对SQL初学者容易混淆的变量与别名使用问题进行了详细解释,并提供了修正后的代码。

1、错误描述



2、错误原因

BEGIN
	SELECT stuAge INTO amount;
  IF stuAge IS NOT NULL THEN
  SET stuAge = stuAge + 1;
  SELECT stuAge INTO amount1;
  ELSE
  SELECT 20 INTO amount2;
  END IF;
  SELECT stuAge INTO amount3;
END;

amount实际是stuAge的别名,但是却写成了一个变量


3、解决办法

BEGIN
	SELECT stuAge AS amount;
  IF stuAge IS NOT NULL THEN
  SET stuAge = stuAge + 1;
  SELECT stuAge AS amount1;
  ELSE
  SELECT 20 INTO stuAge;
  END IF;
  SELECT stuAge AS amount3;
END


现在显示出了这一些:beginning of main 2025-11-24 16:31:50.978 1941-2015 APM_AudioPolicyManager audioserver W getDeviceConnectionState() undeclared device, type 00000004 2025-11-24 16:31:50.978 1941-2015 APM_AudioPolicyManager audioserver W getDeviceConnectionState() undeclared device, type 00000008 2025-11-24 16:31:50.985 1941-2015 APM_AudioPolicyManager audioserver W getDeviceConnectionState() undeclared device, type 20000000 2025-11-24 16:31:51.033 1941-12542 APM_AudioPolicyManager audioserver W getDeviceConnectionState() undeclared device, type 00000004 2025-11-24 16:31:51.034 1941-12542 APM_AudioPolicyManager audioserver W getDeviceConnectionState() undeclared device, type 00000008 2025-11-24 16:31:51.061 1941-12542 APM_AudioPolicyManager audioserver W getDeviceConnectionState() undeclared device, type 20000000 2025-11-24 16:31:52.395 1941-9355 APM_AudioPolicyManager audioserver W getDeviceConnectionState() undeclared device, type 00000004 2025-11-24 16:31:52.408 1941-9355 APM_AudioPolicyManager audioserver W getDeviceConnectionState() undeclared device, type 00000008 2025-11-24 16:31:52.414 1941-9355 APM_AudioPolicyManager audioserver W getDeviceConnectionState() undeclared device, type 20000000 2025-11-24 16:31:52.418 1941-9355 APM_AudioPolicyManager audioserver W getDeviceConnectionState() undeclared device, type 00000004 2025-11-24 16:31:52.418 1941-9355 APM_AudioPolicyManager audioserver W getDeviceConnectionState() undeclared device, type 00000008 2025-11-24 16:31:52.428 1941-9355 APM_AudioPolicyManager audioserver W getDeviceConnectionState() undeclared device, type 20000000 2025-11-24 16:31:52.436 1941-9355 APM_AudioPolicyManager audioserver W getDeviceConnectionState() undeclared device, type 00000004 2025-11-24 16:31:52.443 1941-9355 APM_AudioPolicyManager audioserver W getDeviceConnectionState() undeclared device, type 00000008 2025-11-24 16:31:52.449 1941-29717 APM_AudioPolicyManager audioserver W getDeviceConnectionState() undeclared device, type 20000000 2025-11-24 16:31:52.569 1941-29717 APM_AudioPolicyManager audioserver W getDeviceConnectionState() undeclared device, type 00000004 2025-11-24 16:31:52.569 1941-29717 APM_AudioPolicyManager audioserver W getDeviceConnectionState() undeclared device, type 00000008 2025-11-24 16:31:52.571 1941-9355 APM_AudioPolicyManager audioserver W getDeviceConnectionState() undeclared device, type 20000000 2025-11-24 16:31:54.272 1941-29717 APM_AudioPolicyManager audioserver W getDeviceConnectionState() undeclared device, type 00000004 2025-11-24 16:31:54.272 1941-29717 APM_AudioPolicyManager audioserver W getDeviceConnectionState() undeclared device, type 00000008 2025-11-24 16:31:54.273 1941-29717 APM_AudioPolicyManager audioserver W getDeviceConnectionState() undeclared device, type 20000000 2025-11-24 16:31:56.141 1941-29717 APM_AudioPolicyManager audioserver W getDeviceConnectionState() undeclared device, type 00000004 2025-11-24 16:31:56.141 1941-29717 APM_AudioPolicyManager audioserver W getDeviceConnectionState() undeclared device, type 00000008 2025-11-24 16:31:56.143 1941-29717 APM_AudioPolicyManager audioserver W getDeviceConnectionState() undeclared device, type 20000000 2025-11-24 16:32:23.495 1941-1941 APM_AudioPolicyManager audioserver W getDeviceConnectionState() undeclared device, type 00000004 2025-11-24 16:32:23.497 1941-1941 APM_AudioPolicyManager audioserver W getDeviceConnectionState() undeclared device, type 00000008 2025-11-24 16:32:23.504 1941-3601 APM_AudioPolicyManager audioserver W getDeviceConnectionState() undeclared device, type 20000000 2025-11-24 16:32:39.645 1941-1941 APM_AudioPolicyManager audioserver W getDeviceConnectionState() undeclared device, type 00000004 2025-11-24 16:32:39.651 1941-1941 APM_AudioPolicyManager audioserver W getDeviceConnectionState() undeclared device, type 00000008 2025-11-24 16:32:39.662 1941-1941 APM_AudioPolicyManager audioserver W getDeviceConnectionState() undeclared device, type 20000000
最新发布
11-25
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值