摘要: public class ItcastClass { private string[] _names = { "111", "222", "333", "444", "5555" }; public int Count { get { return _names.Length; } } public 阅读全文
posted @ 2020-11-21 12:03 boenotuch 阅读(93) 评论(0) 推荐(0)
摘要: 基本类型:Boolean : 取值 true or false Number : 数值,整型 浮点 double String :字符串 Undefined:未定义,未赋值,只有一个值 undefined Null :只有一个值 Null Object 引用类型 typeof 返回变量的数据类型,以 阅读全文
posted @ 2020-11-16 21:52 boenotuch 阅读(108) 评论(0) 推荐(0)
摘要: // 单行注释 /**/多行注释 JS中字符串可以使用双引号,也可以使用单引号,推荐使用单引号 ,如 alert('hello'); 这样可以避免以后的代码冲突 <script type="text/javascript"> //在这里写JS代码 </script> html文档内HTML代码和JS 阅读全文
posted @ 2020-11-15 22:23 boenotuch 阅读(80) 评论(0) 推荐(0)
摘要: union 多个结果集行的联合,所以要求多个结果集列数相同,列类型相同 join 是列的联合 union all和 union的区别在于,union all不去除重复数据,不重新排列数据 union all/union 可用于一个结果集及汇总的联合 select 商品名称, 销售总价=sum(销售价 阅读全文
posted @ 2020-05-31 21:20 boenotuch 阅读(362) 评论(0) 推荐(0)
摘要: select sum(tsage), 性别=tsgender, 人数=count(*) from tbstudent group by tsgender --当使用了分组语句 group by 或者是聚合函数的时候,在select查询列表中不能再包含其它的列名(group by 分组后的数据只有一列 阅读全文
posted @ 2020-05-31 18:28 boenotuch 阅读(310) 评论(0) 推荐(0)
摘要: select * 4 from mytable 1 where ..... 2 group by .... 3 order by .... 5 阅读全文
posted @ 2020-05-31 17:54 boenotuch 阅读(133) 评论(0) 推荐(0)
摘要: 通配符主要用于字符串的查询和匹配 _ :匹配一个字符 select * from mytable where name like '张_' 查询条件张姓,姓名2个字 % :匹配多个字符 select * from mytable where name like '张%' 查询条件 张姓 [] :范围 阅读全文
posted @ 2020-05-31 17:36 boenotuch 阅读(455) 评论(0) 推荐(0)
摘要: SQL中 非 简体中文排序出现乱码的问题,需要在引号前面加N insert into tbStar values(N'科比布莱恩特') 字段类型nvarchar 阅读全文
posted @ 2020-05-25 23:34 boenotuch 阅读(195) 评论(0) 推荐(0)
摘要: 存储过程是将个SQL语句封a装到一个方法中,好处一是方便客户端的调用,二是执行速度会更快 --创建存储过程进行转账 create proc ups_transfer @from char, --源账户 @to char, --目标账户 @balance money, --转账金额 @resultnu 阅读全文
posted @ 2020-05-24 22:17 boenotuch 阅读(668) 评论(0) 推荐(0)
摘要: 1.可空值类型,只能是值类型,比如 int? a=10; int? b=null; double? c=1.0; float? d=1.1; 2.可空值类型被编译器编译成了 Nullable<值类型> 比如 Nullable<int> Nullable<float>等 Nullable<int> 内 阅读全文
posted @ 2020-05-14 19:03 boenotuch 阅读(136) 评论(0) 推荐(0)