Oracle-PLSQL-银行管理系统的简单实现.docVIP

  • 11
  • 0
  • 约1.03万字
  • 约 11页
  • 2016-05-30 发布于江苏
  • 举报
Oracle-PLSQL-银行管理系统的简单实现.doc

--建数据库、数据表 set nocount on use master go if exists(select * from sysdatabases where name=bankDB) drop database bankDB go create database bankDB on ( name=bankDB_data, fileName=D:\temp\bankDB_data.mdf, size=1, filegrowth=15% ) log on ( name=bankDB_log, fileName=D:\temp\bankDB_log.ldf, size=1, filegrowth=15% ) go use bankDB go if exists(select * from sysobjects where name=userInfo) drop table userInfo go create table userInfo ( customerID int identity(1,1) not null, customerName char(10) not null, PID varchar(18) not null, telephone varchar(13) not null, address varchar(50) null ) use bankDB go

文档评论(0)

1亿VIP精品文档

相关文档