CREATE PROCEDURE [dbo].[GoodsCategories_Insert]@parentId int, --父类Id@className nvarchar(50) --分类名称ASBEGIN SET NOCOUNT ON; --不返回计数(表示受 Transact-SQL 语句影...
分类:
其他好文 时间:
2014-08-25 09:56:34
阅读次数:
181
1、多条件 查询 上下级 所有数据 select * from OrgUnit where (ParentId = '3' or OrgId='3' or ParentId in (select OrgId from OrgUnit where ParentId='3'))2、相同列数的 多个查询结...
分类:
数据库 时间:
2014-08-20 11:57:52
阅读次数:
273
insert into __table(id,[name],parentid)values('1','北京市','0')insert into __table(id,[name],parentid)values('2','东城区','1')insert into __table(id,[name],...
分类:
数据库 时间:
2014-08-15 17:37:50
阅读次数:
288
一、$表示jquery对象 二、样本 1.ajax进行json交互 $.ajax({ url : path+"expressDic.do?parentId=" + parentId, type : ‘post‘, dataType : ‘json‘, timeout : 5000, error : function() { alert(‘加载数据异常,...
分类:
Web程序 时间:
2014-08-05 11:41:29
阅读次数:
226
update Project set Project.ProjectName=a.ProjectName+Project.ProjectNamefrom Project as a,Project where Project.ParentID=a.ID
分类:
其他好文 时间:
2014-07-23 12:14:36
阅读次数:
172
首先建立分类信息表:[sql] view plaincopyCREATETABLEIFNOTEXISTS`category`(`categoryId`smallint(5)unsignedNOTNULLAUTO_INCREMENT,`parentId`smallint(5)unsignedNOTNU...
分类:
Web程序 时间:
2014-07-22 22:34:53
阅读次数:
335
1、数据准备假定有一个表DiGui,有两个字段Id int ParentId intId ParentId4 05 07 02 18 515 59 714 1130 1523 1541 18104 2342 3039 3053 3967 3988 39107 392、目的:通过传入ParentId....
分类:
数据库 时间:
2014-07-19 09:10:28
阅读次数:
247
效果图:数据库表:DirID:目录的ID,ParentID:目录的父路径ID,Name:目录的名字主要代码:usingSystem;usingSystem.Collections;usingSystem.Configuration;usingSystem.Data;usingSystem.Linq;...
分类:
其他好文 时间:
2014-07-17 14:30:49
阅读次数:
270
前台jquery+ajax请求往页面上添加树形的js代码 1 //传入当前点击节点的id,在后台代码查询出parentid=当前节点id的记录数,从而实现点击当前节点,往后台发送ajax请求,查询出子节点的集合,往父节点下拼接页面 2 function treeNode(pid){ 3 4...
分类:
Web程序 时间:
2014-07-16 18:39:32
阅读次数:
217
{loop subcat(0,0,0,$siteid) $r}{/loop}
/**
* 获取子栏目
* @param $parentid 父级id
* @param $type 栏目类型
* @param $self 是否包含本身 0为不包含
* @param $siteid 站点id
*/
function subcat($parentid = NULL, $...
分类:
Web程序 时间:
2014-07-14 20:30:49
阅读次数:
522