数据库操作常用命令

1.链接数据库:

mysql -h localhsot -u root -p

2.显示MySql中的数据库:

show databases;

3.进入数据库:

use (数据库名称);

4.查看数据库中的表:

show tables;

5.显示表结构:

desc (表名称);

6.创建数据库:

create badabase (数据库名);

7.创建表:

create table products(
	id int not null auto_increment,
	cid int not null default ‘0‘,
	name varchar(60) not null default ‘‘,
	num int not null default ‘0‘,
	price double(7,2) not null default ‘0.00‘,
	description text not null default ‘‘,
	ptime int not null default ‘0‘,
	primary key(id),
	key pname(name,price)
);

8.删除表:

drop table (表名);

9.插入表数据:

insert into 表名[字段列表] values [值列表1],[值列表2],[值列表3],[值列表4];


insert into products values (‘‘,‘2‘,‘PHP‘,‘20‘,‘20.22‘,‘Good‘,‘‘);


insert into products (cid,name,num,price,description) values 
(‘1‘,‘SBASD‘,‘23‘,‘23.23‘,‘this is sb‘),
(‘2‘,‘SB‘,‘33‘,‘22.23‘,‘this is ssb‘),
(‘4‘,‘4SD‘,‘53‘,‘23.23‘,‘this is sb‘),
(‘1‘,‘S2342SD‘,‘73‘,‘34.23‘,‘this is sb‘),
(‘4‘,‘SB3ASD‘,‘13‘,‘22.23‘,‘this is sb‘),
(‘6‘,‘aasdf‘,‘103‘,‘13.23‘,‘this is sb‘),
(‘8‘,‘SBasdfaASD‘,‘20‘,‘43.23‘,‘this is sb‘),
(‘6‘,‘SBAasdSD‘,‘43‘,‘73.23‘,‘this is sb‘),
(‘5‘,‘SBAasdasdfSD‘,‘258‘,‘523.23‘,‘this is sb‘),
(‘11‘,‘SBasdfasdfASD‘,‘213‘,‘3.23‘,‘this is sb‘),
(‘12‘,‘SBasdfASD‘,‘23‘,‘2213.23‘,‘this is sb‘),
(‘13‘,‘SBasdfASD‘,‘103‘,‘2213.23‘,‘this is sb‘),
(‘14‘,‘SBAasdfSD‘,‘21‘,‘3.23‘,‘this is sb‘),
(‘15‘,‘asdf‘,‘201‘,‘223.23‘,‘this is sb‘),
(‘1‘,‘SBasdfASDasdfaASD‘,‘23‘,‘22.23‘,‘this is sb‘),
(‘3‘,‘SBASD‘,‘23‘,‘23.23‘,‘this is sb‘),
(‘8‘,‘SBfASD‘,‘23‘,‘2233.23‘,‘this is sb‘),
(‘9‘,‘SBASD‘,‘23‘,‘23.23‘,‘this is sb‘);

10.更新表数据:

update 表名 set 字段1=‘value1‘ ,字段2=‘value2‘,字段3=‘value3‘,字段4=‘value4‘ where (条件语句);

update products set price=‘11.11‘,name=‘java‘ where id > 19;

11.删除数据:

delete from 字段 where 条件
delete from products where id=10;

12.查询数据:

 ①多表查询:

  

1. select * from cats, products;


2.两个表总有相同字段的:
select c.name cname,p.name pname from cats as c, products as p;

3.关联数据库:
select c.name cname ,p.name pname from cats as c,products as p where c.id=p.cid and cid=5;

4.同表查询:

  

 ②嵌套查询:

嵌套查询:(先执行子查询 子查询里面还有子查询)
select * from products where cid in(select id from cats where name like ‘J%‘);

数据库操作常用命令,古老的榕树,5-wow.com

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。