这个人很懒,暂无签名信息
点击Design里面选Board Shape,跳出子列表选第一项Redefine Board Shape;此时鼠标成十字形状,绘制想要的大小。
定义模式 模式定义语句:create schema 模式名 ; create schema test; 如上,建立了一个名叫test的模式。 删除模式 drop schema 模式名;drop schema 模式名 cascade;drop schema 模式名 restrict; drop schema test; drop schema test cascade; drop sche...