摘要:
public class ItcastClass { private string[] _names = { "111", "222", "333", "444", "5555" }; public int Count { get { return _names.Length; } } public 阅读全文
摘要:
select sum(tsage), 性别=tsgender, 人数=count(*) from tbstudent group by tsgender --当使用了分组语句 group by 或者是聚合函数的时候,在select查询列表中不能再包含其它的列名(group by 分组后的数据只有一列 阅读全文
摘要:
通配符主要用于字符串的查询和匹配 _ :匹配一个字符 select * from mytable where name like '张_' 查询条件张姓,姓名2个字 % :匹配多个字符 select * from mytable where name like '张%' 查询条件 张姓 [] :范围 阅读全文