摘要: #常见的数据类型 /*数值型: 整型 小数: 定点数 浮点数字符型: 较短的文本:char、varchar 较长的文本:text、blob(较长的二进制数据) 日期型: */ #一、整型/*分类:tinyint、smallint、mediumint、int/integer、bigint1 2 3 4 阅读全文
posted @ 2020-09-20 08:56 袁小娜 阅读(158) 评论(0) 推荐(0)
摘要: #DDL/* 数据定义语言 库和表的管理 一、库的管理创建、修改、删除二、表的管理创建、修改、删除 创建: create修改: alter删除: drop */ #一、库的管理#1、库的创建/*语法:create database [if not exists]库名;*/ #案例:创建库Books 阅读全文
posted @ 2020-09-20 08:45 袁小娜 阅读(231) 评论(0) 推荐(0)