摘要:
基本函数用法1、top: select top number/percent 列名 from表名2、in:select * from 表名 where 列名 in ('值1','值2'); 有时值为汉字时因编码方式不同数据库会检查不到结果,此时可在值前加N即为:('N值1','N值2');3、be... 阅读全文
摘要:
using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace CWork0408 { class Program { public enum Student { stu1... 阅读全文