摘要:show [session|global] status like .... #默认是session级别的状态,是当前会话,如果用global是查看从数据库启动后所有的全局状态show status like 'uptime'; #数据库启动了多长时间以秒为单位 show status like 'com_select'; #从数据库启动到现在执行了多少次查询show status like 'com_insert'; #从数据库启动到现在
2017年05月19日
MySQL多表连接查询
摘要:select ... from join_tablejoin_type join_tableon join_conditionwhere where_conditionjoin_table 参与连接的表join_type 连接类型:内连接,外连接,交叉连接,自连接join_condition 连接条件where_condition where过滤条件交叉连接:select ... from join_table cross join join_table2.返回连接表中所有数据行的笛卡尔积返回的数据行=表1的行数*表2的行数内连接:连接条件
分类:DataBase
2017年05月19日
MySQL连接查询join
摘要:当不同的表中存在表示相同意义的字段时,可以通过该字段来连接这几个表内连接查询//只能查询出指定字段取值相同的记录mysql> select * fromdepartment;+------+-----------+--------------+---------------------+| d_id | d_name | function | address  
分类:DataBase
2017年05月19日
MySQL表复制
摘要:复制表结构+复制表数据mysql>create table t1(id int);mysql>create table t2 like t1; //复制表结构mysql>insert into t2 select * from t1; //复制表数据,当t2,t1表结构相同时,才可以用select * from t1;,当只要复制部分数据时,要指明列
分类:DataBase
2017年05月19日
MySQL子查询
摘要:子查询是将一个查询语句嵌套在另一个查询语句中,内层查询语句的查询结果,可以为外层查询语句提供查询条件mysql> select * fromemployee where d_id in (select d_id from department);+-----+------+--------+------+------+--------------------+| num | d_id |name | age | sex | homeaddr  
分类:DataBase
2017年05月19日
MySQL查询语句大全
摘要:ˎ̥SQL查询语句大全集锦1:使用SHOW语句找出在服务器上当前存在什么数据库:mysql> SHOW DATABASES;2:2、创建一个数据库MYSQLDATAmysql> CREATE DATABASE MYSQLDATA; 3:选择你所创建的数据库mysql> USE MYSQLDATA; (按回车键出现Database changed 时说明操作成功!)4:查看现在的数据库中存在什么表mysql> SHOW TABLES;5:创建一个数据库表mysql> CR
分类:DataBase
2017年05月19日
MySQL 常用函数
摘要:selectdatabase();version();user();inet_aton(ip);返回IP地址的数字表示inet_ntoa(num);返回数字代表的IP地址password(str);md5(); mysql内置函数 &nbs
分类:DataBase
2017年05月19日
MySQL ? 帮助的使用
摘要:mysql> ?contents;You asked for helpabout help category: "Contents"For more information,type 'help <item>', where <item> is one of the followingcategories: Account Management Administration Data Definition Data Manipulation Data Types Functions &nbs
分类:DataBase
2017年05月19日
MySQL Truncate、delete与drop区别
摘要:truncate、delete(不带where子句)与drop的异同点:相同之处: 三者均会删除表内的data。不同点: <1>、truncate与不带where的delete:只删除数据,而不删除表的结构(定义) drop语句将删除表的结构被依赖的约束(constrain),触发器(trigger),索引(index);依赖于该表的存储过程/函数将被保
分类:DataBase
2017年05月19日
MySQL获得当前日期时间(以及时间的转换)
摘要:1.1 获得当前日期+时间(date + time)函数:now()除了 now() 函数能获得当前的日期时间外,MySQL 中还有下面的函数:current_timestamp() current_timestamplocaltime() localtimelocaltimestamp() localtimestamp 这些日期时间函数,都等同于 now()。鉴于 now() 函数简短易记,建议总是使用 now() 来替代上面列出的函