Commit f27017b3 authored by MaoZheng Xu's avatar MaoZheng Xu
Browse files

'新增文件’

parent 5b94ccad
1.create user‘todo’@’localhost’ identified by ‘123456’;
create database todo;
grant all on todo.* to ‘todo’@’localhost’;
2.mysql -u todo -p
use todo;
3.create table user(
id int primary key auto_increment not null,
name varchar(10)
);
4.insert into user (name) values (‘qwq’);
5.delete from user where name = ‘qwq’;
\ No newline at end of file
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment