摘要: 基本函数用法1、top: select top number/percent 列名 from表名2、in:select * from 表名 where 列名 in ('值1','值2'); 有时值为汉字时因编码方式不同数据库会检查不到结果,此时可在值前加N即为:('N值1','N值2');3、be... 阅读全文
posted @ 2015-04-10 13:30 Yida_婷婷 阅读(164) 评论(0) 推荐(0) 编辑
摘要: 植物调查选课调查信息调查性格调查 阅读全文
posted @ 2015-04-10 13:10 Yida_婷婷 阅读(185) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace CWork0408 { class Program { public enum Student { stu1... 阅读全文
posted @ 2015-04-08 09:59 Yida_婷婷 阅读(262) 评论(4) 推荐(0) 编辑
摘要: 建表: create table 表名(字段名1 字段类型(长度) 约束,......); 约束类型: 主键:(1)primary key (2)constraint 表名_字段名_pk priamry key(字段名) 不为空:(1) not null (2)constra... 阅读全文
posted @ 2015-04-07 10:35 Yida_婷婷 阅读(152) 评论(0) 推荐(0) 编辑
摘要: 1、MSIL:Microsoft Intermediate Language 微软中间语言2、.NET Framework 的存储位置:%windir%\Microsoft.NET从 .NET Framework 4 开始,全局程序集缓存的默认位置为 %windir%\Microsoft.NET\a... 阅读全文
posted @ 2015-04-03 16:29 Yida_婷婷 阅读(167) 评论(0) 推荐(0) 编辑
摘要: csproj:C Sharp project 简称.csproj是C#的工程文件csproj存在的唯一意义:为“开发环境”提供信息 阅读全文
posted @ 2015-04-03 15:30 Yida_婷婷 阅读(232) 评论(0) 推荐(0) 编辑
摘要: using System;namespace Stack { public class Stack { // 节点类 class Node { // 节点有两个属性:自己、指向下一个节点 public Node Next; public object Value; pub... 阅读全文
posted @ 2015-04-03 10:56 Yida_婷婷 阅读(161) 评论(0) 推荐(0) 编辑
摘要: drop table zmt_s_c;drop table zmt_student;drop table zmt_course;create table zmt_student(sno char(4) primary key not null,sname nchar(10) not null,sex... 阅读全文
posted @ 2015-04-03 09:12 Yida_婷婷 阅读(209) 评论(1) 推荐(0) 编辑
摘要: abs -- 绝对值acos -- 反余弦acosh -- 反双曲余弦asin -- 反正弦asinh -- 反双曲正弦atan2 -- 两个参数的反正切atan -- 反正切atanh -- 反双曲正切base_convert -- 在任意进制之间转换数字bindec -- 二进制转换为十进制ce... 阅读全文
posted @ 2015-04-03 08:52 Yida_婷婷 阅读(252) 评论(2) 推荐(0) 编辑