首页 > 数据库 > mysql教程 > 了解mysql基本语法

了解mysql基本语法

迷茫
发布: 2017-03-26 13:07:40
原创
1342 人浏览过

创建表 

create table <表名>(
 <字段名>  类型(长度) not null primary key auto_increment, **主键
 name char(20) not null,  
 sex int(4) not null default &#39;0&#39;, **默认键
 degree double(16,2)
)
登录后复制

删除表

drop table <表名>;
//情空表
delete from <表名>;
登录后复制

插入数据

insert into <表名> [( <字段名1>[,..<字段名n > ])] values ( 值1 )[, ( 值n )]
登录后复制

查询表

select <字段1,字段2,...> from < 表名 > where < 表达式 >
登录后复制

查询表的前几个字段

select * from MyClass order by id limit 0,2;
登录后复制

查询字段总和

select sum('字段名') from 表名

查询字段 按照升序降序排列

降序:select * from 表名 where 表达式 order by 字段名 desc

升序:select * from 表名 where Putout=true order by time asc

删除表

delete from 表名 where 表达式
登录后复制

修改表

update 表名 set 字段=新值,… where 条件
登录后复制

添加表字段

alter table 表名 add 字段 类型 其他;

<1 主键:alter table 表名 add primary key (字段名);

<2 唯一约束:alter table 表名 add unique 索引名 (字段名);

删除表字段

alter table 表名 drop 字段名
登录后复制

以上是了解mysql基本语法的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板