2015年5月21日

面向对象练习1

摘要: using System;using System.Collections;using System.Collections.Generic;using System.Text;namespace ConsoleApplication40{ class Program { ... 阅读全文

posted @ 2015-05-21 16:51 wang_w_J 阅读(189) 评论(0) 推荐(0) 编辑

2015年5月18日

网页倒计时练习

摘要: 无标题文档 阅读全文

posted @ 2015-05-18 10:42 wang_w_J 阅读(108) 评论(0) 推荐(0) 编辑

2015年4月28日

SQL语句练习二

摘要: use LIANXICreate table student--学生表(ssno varchar(50) not null primary key,--主键学生学号ssname varchar(50) not null,--学生姓名sssex varchar(50) not null,--学... 阅读全文

posted @ 2015-04-28 15:45 wang_w_J 阅读(219) 评论(0) 推荐(0) 编辑

2015年4月23日

SQL语句练习

摘要: Create table student--学生表(ssno varchar(50) not null primary key,--主键学生学号ssname varchar(50) not null,--学生姓名sssex varchar(50) not null,--学生性别sbirthday ... 阅读全文

posted @ 2015-04-23 08:46 wang_w_J 阅读(344) 评论(0) 推荐(0) 编辑

2015年4月20日

SQL查询语句练习及相关代码

摘要: select *from xueshengxinxi where shengao=164select *from xueshengxinxi where nianling !=23--子查询:就是使用查询语句查询一列数据出来,然作为其他查询的查询条件参数来使用--查询身高不在年龄是岁的人的身高范围之... 阅读全文

posted @ 2015-04-20 15:03 wang_w_J 阅读(164) 评论(0) 推荐(0) 编辑

2015年4月19日

SQL2008基本语句

摘要: create database s20150417--创建数据库(数据库不能以数字开头,只能以下划线和字母开头)drop datebase s2015o417--删除数据库use --使用数据库gocreate table xuesheng--创建表(code int not null,--列na... 阅读全文

posted @ 2015-04-19 09:21 wang_w_J 阅读(191) 评论(0) 推荐(0) 编辑

导航