--显示版本号,当前日期 SELECT VERSION(),CURRENT_DATE(),NOW(); --免费的计算器 SELECT (20+5)*4 AS RESULT,SIN(PI()/3); --创建数据库 CREATE DATABASE databasename; --删除数据库 DROP DATABASE databasename; --显示当前存在的数据库 SHOW DATABASES; --选择数据库 USE databasename; --显示当前选择的数据库 SELECT DATABASE(), USER(); --显示当前数据库中的表 SHOW TABLES; --插入表 CREATE TABLE tablename ( id varchar(32) not null primary key, name varchar(20) not null, password varchar(20) not null ); --插入数据 INSERT INTO tablename VALUES ('CZX','Christen','litejava'); --导入脚本 SOURCE filepath; -- eg SOURCE C:/blog.sql --删除表 DROP TABLE tablename; --删除表中的全部数据 DELETE FROM tablename; --更新数据 UPDATE tablename SET password='123456'; --显示表的内容 SELECT * FROM tablename; --描述表的结构 DESCRIBE tablename; --从文本中导入数据 LOAD DATA LOCAL INFILE 'file path' INTO TABLE tablename; --选择特殊行 SELECT * FROM tablename WHERE id = 'czx'; SELECT name,password FROM tablename WHERE id = 'czx' AND name = 'Christen' SELECT * FROM tablename WHERE name IS NULL; --去除重复行 SELECT DISTINCT name FROM tablename; --模糊查询 SELECT * FROM tablename WHERE name LIKE '%陈自新%'; --计数 SELECT COUNT(*) FROM tablename; #按条件过滤 SELECT * FROM T_Employee WHERE FSalary>4000 AND FSalary<8000 SELECT * FROM T_Employee WHERE FSalary BETWEEN 4000 AND 8000 #排序asc升序,desc降序 #select * from info order by wage desc #select * from info order by name asc #模糊查询 #SELECT address from info where t_name like '%c%' #插入一列 #alter table info add t_phone varchar(24) null #求和sum,max,min,avg #select sum(c_2) from tablename
显示数据库或表:
show databases;
use database_name;
show tables;
更改表名:
alter table table_name rename new_t;
添加列 :
alter table table_name add column c_n column attributes;
删除列:
alter table table_name drop column c_n;
创建索引:
alter table c_table add index (c_n1,c_n2);
alter table c_table add unique index_name(c_n);
alter table c_table add primary key(sid);
删除索引:
alter table c_table drop index c_n1;
更改列信息:
alter table t_table change c_1 c_1 varchar(200);
alter table t_table modify 1 c_1 varchar(200);
insert插入语句:
insert into table_name (c_1,c_2) values ('info1','info2');
update语句:
update table_name set c_1 =1 where c_2=3;
删除数据库或者表:
drop table table_name;
drop database database_name;//使用mysql_drop_db()可以删除的