mysqlsql 函数循环查询
我在数据库的部门表里存的树形结构,在已知子部门时向上查找所有父级部门,写的函数如下
CREATE FUNCTION queryAllDept(@currdeptid varchar(50))returns varchar(200)BEGIN declare @allname varchar(200) DEFAULT ''; declare @tempname varchar(200) DEFAULT ''; declare @tempparid varchar(200) DEFAULT ''; select @allname=`name`,@tempparid=parid from ym_dept where id=@currdeptid; while(@tempparid <> '0') do select @tempname=`name`,@tempparid=parid from ym_dept where id=@tempparid; set @allname=CONCAT(@tempname,',',@allname); end while; RETURN @allname;END
错误提示:
[Err] 1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '@currdeptid varchar(50))
returns varchar(200)
BEGIN
declare @allname varchar' at line 1
采用 php+mysql 数据库方式运行的强大网上商店系统,执行效率高速度快,支持多语言,模板和代码分离,轻松创建属于自己的个性化用户界面 v3.5更新: 1).进一步静态化了活动商品. 2).提供了一些重要UFT-8转换文件 3).修复了除了网银在线支付其它支付显示错误的问题. 4).修改了LOGO广告管理,增加LOGO链接后主页LOGO路径错误的问题 5).修改了公告无法发布的问题,可能是打压
0
请问大神哪里有问题了
每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号