码迷,mamicode.com
首页 >  
搜索关键字:_parentid    ( 290个结果
无限极分类
CREATE PROCEDURE [dbo].[GoodsCategories_Insert]@parentId int, --父类Id@className nvarchar(50) --分类名称ASBEGIN SET NOCOUNT ON; --不返回计数(表示受 Transact-SQL 语句影...
分类:其他好文   时间:2014-08-25 09:56:34    阅读次数:181
SQL常用语句集合(不断更新)
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
2014中国省市数据库
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总结
一、$表示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
php之无限极分类
首先建立分类信息表:[sql] view plaincopyCREATETABLEIFNOTEXISTS`category`(`categoryId`smallint(5)unsignedNOTNULLAUTO_INCREMENT,`parentId`smallint(5)unsignedNOTNU...
分类:Web程序   时间:2014-07-22 22:34:53    阅读次数:335
SqlServer with递归查询的使用
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
DropDownList中显示无限级树形结构
效果图:数据库表:DirID:目录的ID,ParentID:目录的父路径ID,Name:目录的名字主要代码:usingSystem;usingSystem.Collections;usingSystem.Configuration;usingSystem.Data;usingSystem.Linq;...
分类:其他好文   时间:2014-07-17 14:30:49    阅读次数:270
jquery,从后台查数据,给页面上添加树形。
前台jquery+ajax请求往页面上添加树形的js代码 1 //传入当前点击节点的id,在后台代码查询出parentid=当前节点id的记录数,从而实现点击当前节点,往后台发送ajax请求,查询出子节点的集合,往父节点下拼接页面 2 function treeNode(pid){ 3 4...
分类:Web程序   时间:2014-07-16 18:39:32    阅读次数:217
PHPCMS V9{loop subcat(0,0,0,$siteid) $r}怎么解释?
{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
290条   上一页 1 ... 26 27 28 29 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!