
mysql
ancy
河北工业大学,软件工程专业
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
mysq 存储过程查询
1.mysql存储过程查询方式 select namefrom mysql.proc where db=’数据库名’; 或者 select routine_name from information_schema.routines where routine_schema='数据库名'; 或者 show procedure status where db='数原创 2015-02-28 10:26:11 · 571 阅读 · 0 评论 -
mysql 语句学习网站
http://www.w3school.com.cn/sql/func_date_add.asp原创 2015-03-26 16:41:28 · 423 阅读 · 0 评论 -
mysql 索引基本操作
一.索引查询 show index from table_name; 各字段含义: Non_unique:如果索引不能包括重复词,则为0。如果可以,则为1 Key_name:索引名称 Seq_in_index:索引中的列序列号,从1开始 Column_name:列名称 Collation:列以什么方式存储在索引中。在MySQL中,有值‘A’(升序)或NULL(无分类) Card原创 2015-03-20 23:02:27 · 750 阅读 · 0 评论 -
mysql explain
When you issue a query, the MySQL Query Optimizer tries to devise an optimal plan for query execution. You can see information about the plan by prefixing the query with EXPLAIN. EXPLAIN is one of t转载 2015-03-10 14:28:50 · 404 阅读 · 0 评论 -
mysql 帮助文档学习
转自:http://www.ilanni.com/?p=8157 在安装、管理和使用mysql过程中,你是不是需要记忆很多的mysql命令。而且对于新手来说,很不多的命令不知道该如何应用,对于老手来说很多命令时间长了忘记具体的用法。 其实mysql的帮助信息,已经给我们提供很全面的使用方法。 下面我就大致介绍下,如何使用mysql的帮助信息。 说明:在此我只是为学习mysql提供一个思转载 2015-05-11 14:50:13 · 776 阅读 · 0 评论