数据库基本操作(小白练习)
1、查询有哪些数据库
show databases;
2、创建数据库
create database xingxing;
如果不存在就创建
create database if not exists xingxing;
3、进入数据库
use xignxing;
4、查看在哪个数据库下
select databse();
5、删除数据库
drop database xingxing;
6、查看有那些表
show tables;
7、创建表
create table tb(id int,name varchar(20));
8、查看表结构
desc tb;
9、删除表
drop table tb;
10、查看表中数据
select * from tb;
11、查看表中某一字段
select id from tb;
查看id = 2的字段值
seelct * from tb where id=2;
查看name=‘xing’的字段值
select * from tb where name='xing';
12、向表中插入数据
insert into tb(id) values(1);
insert into tb(name) values('xing');
insert into tb(id,name) values(1,'fujiaixng');
13、向表中插入多条数据
insert into tb values(1,'fu'),(2,'jia'),(3,'xing');
14、指定条件修改表中数据
update tb set id=2 where name='xing';(将name=xing的表字段名id改为2)
修改全部
update tb set id=6;(将id全部改为6)
update tb set name='xxx';(将名称全部改为xxx)
update tb set id=2,name='hhh';(将id全部改为2,并且将name全部改为hhh)
15、删除表中数据
delete from tb where id = 2;(将表tb中id为2的字段删除)
16、删除表中所有的数据
delete from tb;(删除跑路)