select schema_name(t.schema_id) as [Schema], t.name as TableName,i.rows as [RowCount]from sys.tables as t, sysindexes as iwhere t.object_id = i.id and ...
分类:
其他好文 时间:
2017-02-22 16:54:00
阅读次数:
181
1. Ordering the SELECT Statement: 1.select 2. From 3. Where 4. Group by 5. Having 6. Order by 2. The OUTOBS=option limits the number of rows in the ou ...
分类:
数据库 时间:
2017-02-20 23:06:02
阅读次数:
205
例外: 例外是程序设计语言提供的一种功能,用来增强程序的健壮性和容错性. 例外分为:系统例外自定义例外 系统例外分为:No_data_found(没有找到数据)、Too_many_rows(select ... into 语句匹配多个行)、Zero_Divide(被零除)、Value_error(算 ...
分类:
数据库 时间:
2017-02-20 12:26:28
阅读次数:
245
not_data_found例外: too_many_rows例外: 算数或转换例外: 0不能做除数例外: 自定义例外: 知识点出处:http://www.imooc.com/learn/360 ...
分类:
数据库 时间:
2017-02-19 15:57:14
阅读次数:
273
注意: 框架标签的页面不能写在<body></body>中 <frameset>: 框架的格式 属性: rows=“30%,*” cols=“3%,*” <frame>: 指定引入的页面 属性: name=“名称” src=“页面的路径” ...
分类:
其他好文 时间:
2017-02-19 12:16:14
阅读次数:
163
The string "PAYPALISHIRING" is written in a zigzag pattern on a given number of rows like this: (you may want to display this pattern in a fixed font ...
分类:
其他好文 时间:
2017-02-12 17:11:32
阅读次数:
198
语法: The SELECT ... INTO OUTFILE 'file_name' [options] form of SELECT writes the selected rows to a file. 示例: 注意: 1、该语法只能在MYSQL服务器上执行; 2、数据文件的保存位置与file ...
分类:
数据库 时间:
2017-02-12 11:15:56
阅读次数:
252
var html=resource(1); function resource(page){ var html=""; var dr='<%=imageSer%>'; $.ajax({ type:"post", data:{page:page,rows:"5"}, async: false, dat ...
分类:
Web程序 时间:
2017-02-11 11:10:52
阅读次数:
162
ViewData["moduleList"] = new SelectList(new El_Basic_ModuleInfo().Rows().AsEnumerable(), "moduleId", "name", objEl_UserInfo.moduleId); 第一个参数为查询得到的数据 第 ...
分类:
Web程序 时间:
2017-02-09 13:15:29
阅读次数:
322
写页面的过程中用到了textarea的文本域,就突然想起他也可以加上剩余字数统计的这个功能。 第一个思路: 根据键盘按键按下去触发一个方法计数: <textarea cols="50" rows="10" maxlength="100" title="只能输入100个字" ng-model="tex ...
分类:
Web程序 时间:
2017-02-08 14:44:45
阅读次数:
200