欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

数据库基本操作

程序员文章站 2022-05-31 21:47:05
...
//使用Java10数据库
use java10;

//显示Java10数据库表格
show tables;

//删除表格
drop table course;

//删除表格的某个列
alter table student2 drop id;
//增加表格的某个列
alter table student2 add column id varchar(12) not null;
//添加第一列
alter table student2 add column i varchar(12) not null first ;
//添加在某个列后面
alter table student2 add column i varchar(12) not null after name;

//创建表格
create table student2(
name varchar(20),
number int,//固定长度为10
sex char(2)
);

//查询表格全部内容
select*from student2; 
//查询表格某个列的内容
select 'name' from student2;

//向表格中插入信息
insert into student2 values ('林浩','161002510146');

//修改表格信息
update student2 set name='林好' where sex='男';

//删除表格某行信息
delete from student2 where name='林好';