mysql常用命令整理

目录

 

 

1.数据类型

 

2.运算符

数学运算符

加减乘除,模除

select 10+3, 10-3, 10*3, 10/3, mod(10,3);

 

逻辑运算符

与,或,非

select 1|0, 1&0, !1;

 

异或

 

3.函数

 

 

4.索引

 

 

5.sql语句

库相关

create database  db1;

drop  database  db1;

表相关

create table t1 (id int);

 

创建表,自增

create table t1(id int auto

创建表,主键

create table t0(id int primary key, id2 int);

 

创建表,索引

 

删除表内容

删除表

 

update

 

 

replace

 

mysql常用命令整理

上一篇:【web开发学习笔记】Structs2 Result学习笔记(三)带参数的结果集


下一篇:HTML DOM innerHTML 属性