博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
mysql的基础知识
阅读量:4698 次
发布时间:2019-06-09

本文共 2093 字,大约阅读时间需要 6 分钟。

一、存储引擎

mysql> show engines;+--------------------+---------+----------------------------------------------------------------+--------------+------+------------+| Engine             | Support | Comment                                                        | Transactions | XA   | Savepoints |+--------------------+---------+----------------------------------------------------------------+--------------+------+------------+| FEDERATED          | NO      | Federated MySQL storage engine                                 | NULL         | NULL | NULL       || MRG_MYISAM         | YES     | Collection of identical MyISAM tables                          | NO           | NO   | NO         || MyISAM             | DEFAULT | MyISAM storage engine                                          | NO           | NO   | NO         || BLACKHOLE          | YES     | /dev/null storage engine (anything you write to it disappears) | NO           | NO   | NO         || CSV                | YES     | CSV storage engine                                             | NO           | NO   | NO         || MEMORY             | YES     | Hash based, stored in memory, useful for temporary tables      | NO           | NO   | NO         || ARCHIVE            | YES     | Archive storage engine                                         | NO           | NO   | NO         || InnoDB             | YES     | Supports transactions, row-level locking, and foreign keys     | YES          | YES  | YES        || PERFORMANCE_SCHEMA | YES     | Performance Schema                                             | NO           | NO   | NO         |+--------------------+---------+----------------------------------------------------------------+--------------+------+------------+9 rows in set (0.00 sec)

  相关介绍:

二、导入数据库脚本

  在cmd命令行直接导入

C:\Users\plan-B>mysql -uroot -p1234 --p3306 < D:\mysqlscript\sampledb.sql

  用source命令导入

mysql> source  D:\mysqlscript\sampledb.sql

 三、远程访问权限及用户设置

grant all privileges on roger.* to roger@'192.168.20.%' identified by "12345a"; flush privileges;

 

转载于:https://www.cnblogs.com/javawer/p/3974850.html

你可能感兴趣的文章
【JavaScript】各种事件
查看>>
函数的动态参数和作用域
查看>>
Silver Cow Party
查看>>
css框模型、定位、浮动
查看>>
重载操作符解析(原)
查看>>
【转】PHP获取当前时间、时间戳的各种格式写法汇总[日期时间]
查看>>
仿百度手机助手标题栏透明度随ListView或ScrollView滚动改变的实现方法
查看>>
easyUI 如何不跳转页面,只是加载替换center部分内容
查看>>
Android中的PopUpWindow
查看>>
BICEP单元测试——随机四则运算升级版
查看>>
TCP/IP,Http,Socket,XMPP的区别
查看>>
PL/SQL Developer-官网下载地址
查看>>
对bmp文件内存压缩 与 解压缩
查看>>
如何学习编程
查看>>
Maven 详解
查看>>
CentOS 7 安装 MySQL
查看>>
codeforce 780C Andryusha and Colored Balloons
查看>>
nowcoder80D applese的生日
查看>>
03 tsung测试报告分析
查看>>
WinCEService项目
查看>>