摘要:
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Collections;using System.Text.RegularExpressions;namesp... 阅读全文
摘要:
var colM = [ { title: "主键", width: 50, hidden: true }, { title: "制令单编号", width: 150, align: "center" }, {... 阅读全文
摘要:
inline-block:可以解决text-align: center; display:block 同时存在时 不能居中问题。text-align: center; display:inline-block即可display:block就是将元素显示为块级元素. block元素的特点是: 总是... 阅读全文
摘要:
阅读全文
摘要:
字段为空:使用 is null字段不为空:使用 is not null!= '1' :不会取空值 '1' :不会取空值要是 不等于1 又查询空值的时候 需要or :whereIsMana is null or IsMana != '1' 阅读全文
摘要:
select *from (select row_number() over (order by ousp_id) as rowNum,* from YZOrder_OutStock_Product where outs_no=@order_no)) as t where ... 阅读全文
摘要:
Command对象的ExecuteNonQuery()方法、ExecuteReader()方法及ExecuteScalar()方法的返回值分别为什么?ExecuteNonQuery()为影响的记录行数ExecuteReader()为DataReaderExecuteScalar()为sql语句中第一... 阅读全文