上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 23 下一页
摘要: create database 作业use 作业--创建学生表create table Student(Sno char(3) primary key not null,Sname char(8) not null,Ssex char(2) not null,Sbirthday datetime ... 阅读全文
posted @ 2015-04-22 11:20 XCml 阅读(253) 评论(0) 推荐(0) 编辑
摘要: create table yyy(code int ,name varchar(50),sex varchar(50),age int,hight decimal(18,1),weight decimal(18,1),idno bigint,address varchar(50))insert in... 阅读全文
posted @ 2015-04-20 22:01 XCml 阅读(182) 评论(0) 推荐(0) 编辑
摘要: namespace 输入一个年份是否为闰年{ class Program { static void Main(string[] args) { while (true) { Console.WriteLine("请输入年份:"); int a = Convert.ToInt32(Console.R... 阅读全文
posted @ 2015-04-19 20:30 XCml 阅读(164) 评论(0) 推荐(0) 编辑
摘要: create database k20150419 --创建一个名为k20150419的数据库go --连接符use k20150419 --使用k20150419这个数据库gocreate table practice --创建一个名为practice的表(tno int primary key ... 阅读全文
posted @ 2015-04-19 20:20 XCml 阅读(204) 评论(0) 推荐(0) 编辑
摘要: select*fromxinxibiaowherehigh>163andsex='男'updatexinxibiaosetname='约里克'wherename='刘凯'--betweenand在什么和什么之间select*fromxinxibiaowherehighbetween165and175... 阅读全文
posted @ 2015-04-18 20:44 XCml 阅读(187) 评论(0) 推荐(0) 编辑
摘要: 二、第二课createtableteacher(tnointprimarykeyidentity(1,1),--将tno设为主键(primarykeyidentity(1,1))tnamevarchar(50))goinsertintoteachervalues('张三')insertintotea... 阅读全文
posted @ 2015-04-17 18:50 XCml 阅读(249) 评论(0) 推荐(0) 编辑
摘要: createdatabases20150417--创建数据库, 数据库的名字不能纯数字createdatabase漩涡鸣人dropdatabase漩涡鸣人--删除数据库use漩涡鸣人--使用数据库go--连接符createtablexuesheng--创建表(codeintnotnull,namev... 阅读全文
posted @ 2015-04-17 18:31 XCml 阅读(176) 评论(0) 推荐(0) 编辑
摘要: namespace 运算符穷举{ class Program { static void Main(string[] args) { //123()45()68=100; 在括号里面添加+-使等式成立 int a; int b; for (int i = 0; i < 2; i++)//有0 和... 阅读全文
posted @ 2015-04-15 22:46 XCml 阅读(135) 评论(0) 推荐(0) 编辑
摘要: namespace 兔子生兔子函数递归{ class Program { static void Main(string[] args) { Console.WriteLine("请输入你想知道兔子哪个月的数量:"); int m = Convert.ToInt32(Console.ReadLine... 阅读全文
posted @ 2015-04-15 22:42 XCml 阅读(710) 评论(0) 推荐(0) 编辑
摘要: namespace 找到一段话中第二个关键字的位置{ class Program { static void Main(string[] args) { //找第二个a string s = "cabcaceadf"; int n = s.IndexOf("a"); //找到第一个a的索引n str... 阅读全文
posted @ 2015-04-15 22:39 XCml 阅读(152) 评论(0) 推荐(0) 编辑
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 23 下一页