摘要:
MySQL数据库的特点并列举Mysql数据库与Oracal数据库的区别 MysQL数据库 MySQL 是一个关系型数据库管理系统,(由瑞典 MySQL AB 公司开发,目前属于 Oracle 公司)。MySQL将数据保存在不同的表中。因此它的灵活性强,速度快强。它具有两种模式:商业版跟社区版,一般新 阅读全文
摘要:
数据库常见的约束类型及使用 非空约束 NOT NULL 创建表时定义 create table dept80(id number,name varchar2(20) not null,salary number constraint dept80_not not null); 在数据类型后面添加co 阅读全文