Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
MaoZheng Xu
backend
Commits
f27017b3
Commit
f27017b3
authored
Nov 17, 2022
by
MaoZheng Xu
Browse files
'新增文件’
parent
5b94ccad
Changes
1
Hide whitespace changes
Inline
Side-by-side
task1
0 → 100644
View file @
f27017b3
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
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment