一.Oracle --创建表 create table test ( id varchar2(200) primary key not null, sort number, name varchar(200) ) --字段加注释 comment on column test.id is 'id'; comment on column test.sort is '序号'; --表加注释 comment on table test is '测试表' 二.Mysql -
PowerDesigner创建表 : 1.双击打开PowerDesigner 2.双击打开Create model 3左键点击Model types,再点击Physical Data model 模型名称要用英文或字母,再点击OK‘建 4.点击右边框里的Tabel(实体建模)然后在中间空白区域左键 5.会出现要用的编辑框进行编辑 6.双击编辑框进行编辑,打开编辑框进行编辑,输入需要编辑内容名称Name可以使用中文.但Code要使用驼峰表示法里的英文或字母表示,然后点击应用. 7.点
--创建学员信息数据表 use StudentManageDB go if exists(select * from sysobjects where name='Students') drop table Students go create table Students ( StudentId ,),--学号 StudentName ) not null,--姓名 Gender ) not null,--性别 Birthday datetime not null,--出生日期 Student
SqlServer 2008 “Msg 1807, Level 16, State 3, Line 1Could not obtain exclusive lock on database ‘model’. Retry the operation later.Msg 1802, Level 16, State 4, Line 1CREATE DATABASE failed. Some file names listed could not be created. Check related er