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 · 546 阅读 · 0 评论 -
mysql 语句学习网站
http://www.w3school.com.cn/sql/func_date_add.asp原创 2015-03-26 16:41:28 · 405 阅读 · 0 评论 -
mysql 索引基本操作
一.索引查询show index from table_name;各字段含义:Non_unique:如果索引不能包括重复词,则为0。如果可以,则为1Key_name:索引名称Seq_in_index:索引中的列序列号,从1开始Column_name:列名称Collation:列以什么方式存储在索引中。在MySQL中,有值‘A’(升序)或NULL(无分类)Card原创 2015-03-20 23:02:27 · 714 阅读 · 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 · 381 阅读 · 0 评论 -
mysql 帮助文档学习
转自:http://www.ilanni.com/?p=8157在安装、管理和使用mysql过程中,你是不是需要记忆很多的mysql命令。而且对于新手来说,很不多的命令不知道该如何应用,对于老手来说很多命令时间长了忘记具体的用法。其实mysql的帮助信息,已经给我们提供很全面的使用方法。下面我就大致介绍下,如何使用mysql的帮助信息。说明:在此我只是为学习mysql提供一个思转载 2015-05-11 14:50:13 · 728 阅读 · 0 评论