登陆数据库
mysql -hlocalhost -uroot -p123456 -u后面是用户名 -p后面是账号密码 -h后面是host
查看数据库列表 show databases;
创建数据库 create database test;
删除数据库 drop database test;
使用数据库 use test;
查看数据表 show tables;
创建数据表 create table test(id INT NOT NULL);
删除数据表 drop table test;
插入数据 insert into test (`id`,`name`) values (1,"xm");
删除数据 delete from test where id=1 and name="bgg";
时间: 2024-10-16 03:07:01