MySQL 数据库
存储数据的方式
. 靠大脑
. 写在纸上
. 写在计算机内存中
. 写在磁盘文件中
数据库能做什么?
存储大量的数据,方便检索。
保持数据信息一致,完整
共享和安全
同过组合分析,产生新的有用信息。
MySQL常见的操做命令:
-- 根据年龄查询数据 where 代表条件 后面添加条件语句
select * from student where age=10
select * from student where name='zhangsan'
-- 插入数据
insert into 表名 values 列属性
insert into student values ( 4, 'qq', 13, 'w' )
insert into student (id, name) values ( 5, 'qw')
-- 删除表中所有的数据
delete from student
-- 删除表中满足条件的数据
delete from student where name='zhangsan'
--将一个表中的数据复制到另外一个表中
-- 将student中所有的数据复制到t1中
INSERT INTO newadmin SELECT * FROM admin;
-- 修改表中的内容
update student set name ='aaa'
update student set name = 'aaa' where age=11
--新建表结构
create table student (
id integer primary key,
name varchar(20),
age integer(2),
sex char(1)
)
-- 删除表结构
drop table student