`
胡火云
  • 浏览: 44483 次
  • 性别: Icon_minigender_1
  • 来自: 武汉
社区版块
存档分类
最新评论
文章列表

模拟工厂

create database Worker go use Worker go create table Worker ( -- 职工工号 int identity (1,1) not null, 职工姓名 char(20) not null, 职工性别 char(2) not null, 职工等级 int not null, 职工联系电话 text null, 职工家庭住址 text null ) alter table Worker add constraint DF_Order default (1) for 职工等级 alter table Worker add cons ...
create database 学生信息数据库 go use 学生信息数据库 go create table 课程信息表 ( 课程号 int not null, 课程名称 char(20) not null, 学分 int not null ) create table 学生信息表 ( 学号 int not null, 姓名 char(10) not null, 性别 char(2) not null ) create table 学生成绩表 ( 考号 int not null, 学号 int null, 课程号 int null, 分数 int not null ) alter table 课 ...
use 家庭数据库 go select * into 家庭成员备份表 from 家庭成员表 select * from 家庭成员备份表 insert 家庭成员备份表 (姓名,性别,关系,联系方式) select 'dfsd','男','dfsf','4327479879872342' union select 'sfxc','女','dfasd','7797987986' select * from 家庭成员备份表 insert into 家庭成员表 select * from 家庭成员备份表 select * from 家庭成员表 drop table 家庭成员备 ...
use 学生信息数据库 go --删除约束的基本格式是:首先要打开要修改的表alter table 表名 然后删除约束  drop constraint 约束名 --单词 alter 的意思是修改 table 的意思是表 drop 的意思是删除 constraint 的意思是约束 alter table 课程信息表 drop constraint  CH_Marks alter table 学生成绩表 drop constraint FK_StuID alter table 学生信息表 drop constraint PK_StuID drop table 课程信息表 drop table ...

修改数据库2

create database StudentInfo go use StudentInfo go create table CourseInfo ( CourseNO int not null, CourseName char(20) not null, Marks int not null ) create table StuInfo ( StuID int not null, StuName char(10) not null, StuSex bit not null ) create table StuExam ( ExamNO int not null, StuID i ...

修改数据库

create database StudentInfo go use StudentInfo go create table CourseInfo ( CourseNO int not null, CourseName char(20) not null, Marks int not null ) create table StuInfo ( StuID int not null, StuName char(10) not null, StuSex bit not null ) create table StuExam ( ExamNO int not null, StuID i ...

数据库练习

create database WorkManagement go use WorkManagement go --创建外键能为空吗? create table WorkerMoney ( WorkerId int not null, WorkerMoney int not null, WorkerBonus int null ) create table WorkerInfo ( WorkerId int not null, WorkerName char(20) not null, WorkerSex char(2) not null, Wo ...

练习写数据库

create database FactoryWork go use FactoryWork go create table employee ( employeeID int not null primary key, employeeName char(20) not null, employeeSex char(2) not null, employeeOrder int not null, employeeCallPhone int null, employeeAddress Text null ) alter table employee add constrain ...
数据库: create database 练习 go use 练习 go create table Student ( s# int not null constraint PK_S# primary key, Sname varchar(50) null, Sage int not null, Ssex char(2) not null ) insert into student (S#,Sname,Sage,Ssex) select 1,'陆运',20,'男' union select 2,'静儿',19,'女' union select 3,'洋洋',19,'女' union sele ...
Java源文件 NativeMethod.java public class NativeMethod { //静态代码块,用来加载动态链接库(.dll) static{ System.loadLibrary("test"); } //定义本地方法 public native void add(); public static void main(String [] args) { NativeMethod nm=new NativeMethod(); nm.add(); } } C++头文件(宏) /* DO NOT EDIT THIS F ...
完成的不太好,但是基本功能实现啦! package com.cn.grame; import java.util.Scanner; /*编写一个石头剪刀布的小程序,可以使用户跟系统进行猜拳游戏。 游戏要求是:首先提示用户在石头剪刀布中间选择一个,确定后系统随机在石头剪 ...
初学正则表达式时写的第一个程序,有不足之处希望大家指出,谢谢!!! package com.cn.regex; import java.util.Scanner; import java.util.regex.Matcher; import java.util.regex.Pattern; public class test { public static void main(String [] args) { Pattern p=Pattern.compile("[a-zA-Z[0-9]]{1,}[@]{1}[a-zA-Z[0-9]]{1,}[.][^0-9]{1,}& ...
我的思维是题目用一维数组,答案用二维数组但是实现起来非常复杂。通过老师的启发发现题目和答案都是用一维数组简单多了,特此想与大家分享! package com.zonghe; import java.util.Scanner; public class Problem { public static void problem(){ int right=0; int error=0; //一维数组 String problem[]={"中国的母语是?","植物靠什么进行光合作用?","JNI是什么的缩写?"}; ...
JNI技术是使用Java代码来写一些native方法,然后通过C++来实现生成dll动态链接库,之后通过System.loadLibrary("动态链接库名");注意动态链接库名的后面不能带有.dll后缀名,如果想调用这些方法就是用new出该类实例来调用native方法。 本例中实现了加减乘除算法,柱体实现请看Suanfa.cpp源文件    Suanfa.java源文件 import java.util.Scanner; public class SuanFa { static{ System.loadLibrary("Suanfa" ...
public class Main { private static final String L = "Decompiling this copyrighted software is a violation of both your license agreement and the Digital Millenium Copyright Act of 1998 (http://www.loc.gov/copyright/legislation/dmca.pdf). Under section 1204 of the DMCA, penalties range up to a $ ...
Global site tag (gtag.js) - Google Analytics