Loading

07 2013 档案

摘要:Sql学习笔记,暂时先保存在着,等不忙了再整理成章节,如果其中有问题的,还请各位大神不吝赐教! 1 --------------------------------------所有的数据基于Northwind库--------------------------- 2 3 --Order by 支持多个排序 4 select * from dbo.Employees order by EmployeeID asc,TitleOfCourtesy desc,BirthDate asc; 5 6 --Title中包含es的所有数据 7 select * from dbo.E... 阅读全文
posted @ 2013-07-31 10:24 jesn 阅读(354) 评论(0) 推荐(0)
摘要://获取image src路径$(".userImg").click(function(){varimgsrc = $(this).attr("src");alert(imgsrc);});//获取Id $("this")里面的 双引号“” 去掉$(".userImg").click(function(){varimageId= $(this).attr("id");alert(imageId);}); 阅读全文
posted @ 2013-07-09 10:53 jesn 阅读(166) 评论(0) 推荐(0)