0


开源数据库Mysql_DBA运维实战 (DDL语句)

DDL

DDL语句 数据库定义语言:数据库、表、视图、索引、存储过程.

例如:CREATE DROP ALTER


DDL库

定义库{

            创建业务数据库:CREAATE DATABASE   ___数据库名___ ;

            数据库名要求{

                                    a.区分大小写

                                    b.唯一性

                                    c.不能使用关键字如 create select

                                    d.不能单独使用数字和特殊符号“如-"

                                    e.正常的:用拼音或单词即可。

                                    }

            查看所有数据库: SHOW  DATABASES;

** }**

选择/进入数据库{

                            USE  __数据库名___;

                            调用函数,查询当前库 SELECT  database();

}

删除数据库:** **DROP DATABASE 数据库名_;

**在Linux系统中的位置:(数据库的实体) /var/lib/mysql/ **


数据类型

数值类型:

常用: 整数类型 int , smallint , mediumint , blgint ,tinyint

         浮点数类型(小数)   float  , double

         定点数类型   DEC

         位类型   BIT

         无符号   UNSIGNED

测试

LAB1:(int,tinyint的最大值)

前言:TINYINT有符号型最大127

       INT有符号型最大2147483647

a.创建一个表

mysql> create table test1( 
    tinyint_test tinyint,
   int_test int
  );

b.查询表结构

mysql> desc test1;
+--------------+------------+------+-----+---------+-------+
| Field        | Type       | Null | Key | Default | Extra |
+--------------+------------+------+-----+---------+-------+
| tinyint_test | tinyint(4) | YES  |     | NULL    |       | 
| int_test     | int(11)    | YES  |     | NULL    |       | 
+--------------+------------+------+-----+---------+-------+
2 rows in set (0.01 sec)

c.插入合法数值

mysql> insert into test1 values (111,111);
Query OK, 1 row affected (0.09 sec)
mysql> insert into test1(int_test) values(2147483647);
Query OK, 1 row affected (0.05 sec)

d.插入非法数值

错误的示例:
mysql> insert into test1(tinyint_test) values(128);
ERROR 1264 (22003): Out of range value for column 'tinyint_test' at row 1
正确的示例:
mysql> insert into test1(tinyint_test) values(127);
mysql> insert into test1(int_test) values(2147483648);
ERROR 1264 (22003): Out of range value for column 'int_test' at row 1

LAB2:(无符号unsigned)

前言: 数值无符号,就只能输入正值,不能输入负值

a.创建一个表

mysql> create table test2(
 tinyint_test tinyint unsigned,              
int_test int unsigned
);
Query OK, 0 rows affected (0.00 sec)

b.查询表结构

mysql> desc test2;
+--------------+---------------------+------+-----+---------+-------+
| Field        | Type                | Null | Key | Default | Extra |
+--------------+---------------------+------+-----+---------+-------+
| tinyint_test | tinyint(3) unsigned | YES  |     | NULL    |       | 
| int_test     | int(10) unsigned    | YES  |     | NULL    |       | 
+--------------+---------------------+------+-----+---------+-------+
2 rows in set (0.00 sec)

c.插入合法数据

mysql> insert into test2(tinyint_test) values(255);
Query OK, 1 row affected (0.06 sec)
mysql> insert into test2(int_test) values(2147483648);
Query OK, 1 row affected (1.87 sec)

d.插入非法数据

mysql> insert into test2 values(-20,-20);
ERROR 1264 (22003): Out of range value for column 'tinyint_test' at row 1

LAB3:(零填充zerofill)

前言: ** **zerofill 自动填充0

a.创建一个表

mysql> create table t2 (
 id1 int zerofill,
id2 int(6) zerofill
);
Query OK, 0 rows affected (0.05 sec)

b.查询表结构

mysql> desc t2;
+-------+---------------------------+------+-----+---------+-------+
| Field | Type                      | Null | Key | Default | Extra |
+-------+---------------------------+------+-----+---------+-------+
| id1   | int(10) unsigned zerofill | YES  |     | NULL    |       |
| id2   | int(6) unsigned zerofill  | YES  |     | NULL    |       |
+-------+---------------------------+------+-----+---------+-------+
2 rows in set (0.00 sec)

c.插入数据

mysql> insert into t2 values(2,2);
Query OK, 1 row affected (0.01 sec)

d.查询表内容

mysql> select * from t2;
+------------+--------+
| id1        | id2    |
+------------+--------+
| 0000000002 | 000002 |
+------------+--------+
1 row in set (0.00 sec)

字符串类型:

枚举类型:ENUM 有65536个元素

时间和日期类型:

在MySQL数据库中,我们可以使用字符串来存储时间,但是如果我们需要基于时间字段
进行查询操作(查询在某个时间段内的数据)就不便于查询实现

常用: DATE TIME DATETIME

约束类型


DDL表

**创表的目的: **a.表是数据库存储数据的基本单位

                    b.表由若干个字段(列)组成

                    c.主要是用来存储数据记录(行)

实例:

1.创建表
要求 创建库school
创建表student1

语法
     create   table 表名(字段名1  类型,字段名2  类型,字段名3  类型 );
mysql> CREATE  DATABASE school;#创建数据库school
            
mysql> use school; #使用库
          
mysql> create table student1(  id int, name varchar (20) , sex enum('m','f'), age int );# 创建一个表,四列

Query OK, 0 rows affected (0.03 sec)

2.查看表名

 mysql> show tables;     查看表名(需要进入一个数据库)
+------------------+
| Tables_in_school |
+------------------+
| student1         |
+------------------+
1 row in set (0.00 sec)
       

3.表中插入内容
语法
insert into 表名 values(字段值列表...);

 插入数据
        insert into student1 values (1,'zhangsan','m',33) ,
        insert into student1 values (2,'lisi','f',20) ,
        insert into student1 values (1,'wangwu','m',40) ,

4.查看表内容

 mysql> select * from student1;    查询表中所有字段的值

5.查看表结构

 desc student1;

注意表结构和表内容是两个概念。

标签: 数据库 mysql dba

本文转载自: https://blog.csdn.net/SongLiang02_/article/details/132216366
版权归原作者 终究是雾散 所有, 如有侵权,请联系我们删除。

“开源数据库Mysql_DBA运维实战 (DDL语句)”的评论:

还没有评论