MySQL基础语句
这里不介绍MySQL 函数及其他知识,只做基本的语法介绍说明。 show databases; 显示数据库 create database name; 创建数据库 create table user like user_info; 创建相同的表结构 create table user as select * from user_info; 创建相同的表结构并复制数据 use databasename; 选择数据库 drop database name 直接删除数据库,不提醒 mysqladmin drop databasename 删除数据库前,有提示。 select version(),now() 显示当前mysql版本和当前日期 create table table_name (字段1 数据类型 , 字段2 数据类型); 创建数据表的语法 alter table t1 rename t2; 重命名表 show tables; 显示表 show create table table_name; 查看建表语句 alter table table_name engine=innodb; 修改存储引擎 desc tablename; 显示表结构 alter table test add column t_name varchar(20) after t_id; 增加表字段; alter table test drop ts_wave 删除字段 alter table test modify id int unsigned; 修改表字段类型 alter table patient add index index_code (pt_code); 增加索引 create unique index on tablenme (pt_code); 创建索引 drop index pt_code on tablename; 删除索引 alter table test change ts_name tb_name varchar(20); 修改表字段及类型 alter table table_name rename to new_table_name; 修改表名 truncate table table_name; 清空表数据
① 约束(主键Primary key、唯一性Unique、非空Not Null)
② 自动增张 auto_increment
③外键Foreign key-----与reference table_name(col_name列名)配合使用,建表时单独使用
添加数据: Insert into tablename (COLUMNS1 , COLUMNS2 , ….)] values (v1 , v2 , …..);删除数据: delete from tablename where ...修改数据: update tablename set COLUMNS1=vs1 where ....查询数据: select columns from tablename where ... group by ... order by ... desc/asc having ... limit ... UPDATE t1 SET col1 = col1 + 1, col2 = col1; col1与col2具有相同的值
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。