第四天上-MySql表的增删改查





#数据库操作

数据库database
-- 有多少个数据库
show databases;

-- 使用test数据库
use test;

-- 创建一个自己要使用的数据库,不用系统 提供的
create database scuecDb;


-- 不要这个数据库了,删除
drop database scuecdb;


-- 创建表学生对象 
create table student
(
 sid int primary key,
 sname char(20),
 sage int,
 score int,
 sheight float
)

-- 如何查看刚刚创建好的表
show tables;

--向里面注册
--添加
  insert into student values(101,'zs',22,98,1.8)
  insert into student(sid,sname,sage,score,sheight)
   values(101,'zs',22,98,1.8)
--查询
  select *  from student;
  select *  from student where sname = 'zs';

-- 修改
  update student set sname='abc',sage=23,score=99,sheight=1.9 where sid=101
 
-- 删除
  delete from student where sid=101


你可能感兴趣的:(Mysql,基础)