MySQL常用数据类型、表操作、对表内容的基本操作

数据类型:int(整数)4字节

                double(浮点数)4字节

                varchar(字符串)可变长存储,最多65535字符

                date,datetime(日期)

提示:以下示例s1均为表名

创建表:create table s1(id    int  auto_increment  primary key COMMENT '主键',

                                          name  VARCHAR(23),

                                          age   int);

设置主键:table_name int auto_increment primary key

删除表:drop table s1

表查询:select * from s1

表内容的基本操作为增删改查 其中查的操作使用频率最高

select查询:

select 字段名 from 表名;

select 字段1,字段2,字段3… from 表名;

insert新增:

insert into 表名 values(全字段);

insert into 表名(字段1,字段2) values(字段1,字段2);

Update更改

update 表名 set 字段=值 where 条件

delete 删除

delete from 表名 where 条件

truncate 全表删除

truncate table 表名

表复制

create table student_user as select * from user;

你可能感兴趣的:(java,数据库,sql)