我是靠谱客的博主 心灵美紫菜,最近开发中收集的这篇文章主要介绍网页 mysql 搜索查询_查询mysql的搜索引擎,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

在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 |

| MEMORY | YES | Hash based, stored in memory, useful for temporary tables | 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 |

| MyISAM | YES | MyISAM storage engine | NO | NO | NO |

| ARCHIVE | YES | Archive storage engine | NO | NO | NO |

| InnoDB | DEFAULT | Supports transactions, row-level locking, and foreign keys | YES | YES | YES |

| PERFORMANCE_SCHEMA | YES | Performance Schema | NO | NO | NO |

+--------------------+---------+----------------------------------------------------------------+--------------+------+------------+

指定搜索引擎:

CREATE TABLE table_name(

noint)ENGINE=MyISAM;

修改搜索引擎:

ALTER TABLE table_name ENGINE=MyISAM;

查看表的搜索引擎:

show creat table table_name;

最后

以上就是心灵美紫菜为你收集整理的网页 mysql 搜索查询_查询mysql的搜索引擎的全部内容,希望文章能够帮你解决网页 mysql 搜索查询_查询mysql的搜索引擎所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(52)

评论列表共有 0 条评论

立即
投稿
返回
顶部