码迷,mamicode.com
首页 >  
搜索关键字:student    ( 6827个结果
MySql数据库在表中添加新字段,设置主键,设置外键,字段移动位置,以及修改数据库后如何进行部署和维护的总结
1,为当前已有的表添加新的字段alter table student add studentName varchar(20) not null;2,为当前已有的表中的字段设置为主键自增alter table student add constraint PK_studentId primaryKey...
分类:移动开发   时间:2015-03-07 13:57:48    阅读次数:173
URAL 1567. SMS-spam (小学数学题)
1567. SMS-spam Time limit: 1.0 second Memory limit: 64 MB Petr, a student, decided to start his own business. He offers SMS advertising services to the business owners renting offices in ...
分类:其他好文   时间:2015-03-07 11:36:09    阅读次数:242
【SummaryPlan】Summary of Feb & Plan of March——How to 'just do it'?
Why I choose to be a graduate student from an undergraduate student?It’s time to applying for internships. Recalling this time last year, how I beg fo...
分类:其他好文   时间:2015-03-06 21:57:16    阅读次数:144
Java中基本知识梳理【基本变量的处理】-----2015年3月6日
对于Java中类的变量,当我们只是新建类对象时,变量的初始值为:int类型变量初始值:0float类型变量初始值:0.0char类型变量初始值:空字符String类型变量初始值:nullboolean类型变量初始值:false下附代码:Customer.java文件class student{ .....
分类:编程语言   时间:2015-03-06 20:33:14    阅读次数:181
iOS 优化内存(四)何时用self
iOS何时使用self. 大多数的答案是:“这与objc的存取方法有关” 怎么样才能有关呢?接下来通过几个小例子来看一下。 首先我们创建一个学生类:Student类 这个学生类里有学生的id和学生的姓名name #import    @interface  Student : NSObject{   //idname   NSString *id;   NSS...
分类:移动开发   时间:2015-03-06 17:11:56    阅读次数:166
Python例子二
例1、构造函数#-*-coding:utf-8-*-import sysclass Student: def __init__(self,name,age): self.__name=name self.__age=age def getName(self):...
分类:编程语言   时间:2015-03-06 10:27:19    阅读次数:147
HDU 5154 Harry and Magical Computer 拓扑排序
水题不解释 拓扑排序判断有无环 Description In reward of being yearly outstanding magic student, Harry gets a magical computer. When the computer begins to deal with a process, it will work until t...
分类:编程语言   时间:2015-03-04 21:07:48    阅读次数:144
内存堆和栈的区别
原文:http://student.csdn.net/link.php?url=http://www.top-e.org%2Fjiaoshi%2Fhtml%2F427.html在计算机领域,堆栈是一个不容忽视的概念,我们编写的C语言程序基本上都要用到。但对于很多的初学着来说,堆栈是一个很模糊的概念。...
分类:其他好文   时间:2015-03-04 18:47:08    阅读次数:109
【Mysql】将Mysql的一张表导出至Excel
把Mysql的一张表导出至Excel不像《【Mysql】将Excel表导入至Mysql的其中一张表》(点击打开链接)那样困难, 直接输入如下的T-SQL语句即可: select * from 某个表 into outfile '文件路径'比如,我要把如下的test数据库的一张i_student表导出至d盘根目录下的1.xls: use test之后,输入: select * from i_...
分类:数据库   时间:2015-03-04 17:03:38    阅读次数:214
1039. Course List for Student
Zhejiang University has 40000 students and provides 2500 courses. Now given the student name lists of all the courses, you are supposed to output the registered course list for each student who comes ...
分类:其他好文   时间:2015-03-04 12:58:12    阅读次数:177
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!