复习简单的mysql语句

时间:2021-04-30 11:18:06

显示所有数据库:show databases;

建一个数据库:create database customer;customer是数据库名;

打开数据库:use customer;在你进行各种操作之前要打开数据库;

客户表    id号     名称   性别    年龄  出生日期  薪资    电话
customer 
           id     name     sex    age    birth    salary   phone

创建表:create table customer(id int(11) not null primary key auto_increment,name varchar(20),sex varchar(2),age int,birth date,salary double,phone varchar(11));


显示表结构:describe customer;

删除表:drop table customer;

把name的长度改成10

修改表:alter table customer modify name varchar(10) not null;

往表里插入一条数据:张三 男 20 null null null ;

插入数据:insert into customer values("张三“,"男",20,null ,null,null);

把姓名为张三的年龄改成18;

修改数据:update customer set age=19 where name="张三";

删除张三这条数据:

删除数据:delete from customer where name="张三";