-- 打印table function print_lua_table (lua_table, indent) if lua_table == nil or type(lua_table) ~= "table" then return end local function print_func(str) XLPrint("[Dongyuxxx] " .. tostring(str)) end indent = indent for k, v in pairs(lua…
树形结构部门的 sqlserver 排序 因为要实现部门排序功能,而且要考虑部门的层级,直接用 sql 排序是不行的,所以写个 sql function 来支持. 首先部门表:company CREATE TABLE company( CompanyId id NOT NULL, CompanyName ) NOT NULL ) 记录部门层级结构的表,如果部门没有上级部门则在这张表中不会有记录: CREATE TABLE company_report( CompanyId id NOT NULL…