标签:incr 表头 help 根据 local 创建 quit 打开 start
用户名:root
密码:root
localhost 127.0.0.1 都表示本机
AI:Auto Increment (the column is auto incremented when rows are inserted) 自增
在SCHEMAS中右键,点击creat schemas。输入数据库名,选择编码格式:utf8mb4-default collation (支持中文)。
可以再数据库上右击create table。
表设置主键,在查看表时出现*就能插入数据,修改插入后点击apply(mysql不分大小写)
在建表的页面有一个Foreign Keys 可通过设置进行关联
创建表
create table tablename( col_name type not null auto_increment, col_name type default, primary key(col_name
查看表命令:show tables;
insert into tablename(col_name,col_name,col_name) values(value1,value2,value3);
update tablename set col_name = value, col_name = value where condition; {条件,如果不加那么会修改所有相同列名的数据}
delete from tablename where condition; {如果不跟条件就会删除所有数据}
!条件可以跟多个。 ex:
select * from mytable order by id,nsme desc;
select ‘some thing’
; 查询静态记录select 1+1
; 查询结果select now()
; 取到当前的时间日期as
修改表头select curdate()
; 查询当前的日期select curtime()
; 查询当前的时间select pi()
; π的值select mod(30,10)
; 求余select sqrt(24)
; 平方根select round(x,y)
四舍五入保留y位小数select floor()
; 直接舍1、备份
点击导航栏的Data Export-选择数据库-Export to Dump Project Folder 设置位置-start Export(打包出来的是每一个表一个文件夹)
Export to Self-Contained File选择位置-起文件夹名(打包成单个文件夹)
2、恢复
点击导航栏 Data Import-恢复有两种方式分别对应备份时的选择-找到要导入的数据库-Default Target Schema(新建一个新的数据库也可以选择已经有的,来存放恢复的数据)-start import
本作品由A_AiTing采用知识共享署名-非商业性使用 4.0 国际许可协议进行许可。
标签:incr 表头 help 根据 local 创建 quit 打开 start
原文地址:http://www.cnblogs.com/A-aiting/p/7943973.html