本文实例总结了MySQL数据库常用操作技巧。,具体如下:
一、查询不同表中同名字段(表连接查询条件神器)
use information_schema;select * from columns where column_name='字段名'; |
二、查询记录总数
SELECT SQL_CALC_FOUND_ROWS * FROM TABLE WHERE 1=1; |
即可得出总数据行数
SET @RowCount=found_rows(); |
三、存储过程数据查询分页
预定义变量:
/*错误代码*/SET @RetCode='1';/*错误提示*/SET @RetVal='1';/*返回记录行数*/SET @RowCount='0';/*页码*/SET @PageCount='0';/*每页显示数*/SET @CurrentItem=0;/*每页显示数*/SET @PageSize=arg_page_size;/*页码*/SET @PageCurrent=arg_page_current;SET @SqlExe='select * from table where 1=1';入参:arg_page_size int,arg_page_current intIF(@PageCurrent IS NOT NULL && @PageSize IS NOT NULL) THENSET @CurrentItem = (@PageCurrent-1)*@PageSize;SET @SqlExe=CONCAT(@SqlExe,'LIMIT ', @PageSize,' OFFSET ', @CurrentItem);ELSESET @SqlExe=CONCAT(@SqlExe,' ');END IF;prepare stmt from @SqlExe;execute stmt;deallocate prepare stmt;IF(@RowCount IS NOT NULL && @RowCount != 0) THENIF(@PageSize is null)thenSET @PageSize= @RowCount;END IF;SET @PageCount = ceiling(@RowCount/@PageSize);ELSESET @RowCount = 0;SET @PageCount = 1;END IF; |
四、字符串相关操作
1、从左开始截取字符串
left(str, length)
说明:left(被截取字段,截取长度)
例:
select left(content,200)as abstract from my_content_t |
2、从右开始截取字符串
right(str, length)
说明:right(被截取字段,截取长度)
例:
select right(content,200)as abstract from my_content_t |
3、截取字符串
substring(str, pos)
substring(str, pos, length)
说明:
substring(被截取字段,从第几位开始截取)
substring(被截取字段,从第几位开始截取,截取长度)
例:
select substring(content,5)as abstract from my_content_tselect substring(content,5,200)as abstract from my_content_t |
(注:如果位数是负数 如-5则是从后倒数位数,到字符串结束或截取的长度)
4、按关键字截取字符串
substring_index(str,delim,count)
说明:substring_index(被截取字段,关键字,关键字出现的次数)
例:
select substring_index("blog.csdn.net",".",2)as abstract from my_content_t |
结果:
blog.csdn |
(注:如果关键字出现的次数是负数 如-2 则是从后倒数,到字符串结束)
函数简介:
SUBSTRING(str,pos) , SUBSTRING(str FROM pos) SUBSTRING(str,pos,len) , SUBSTRING(str FROM pos FOR len)
新闻热点
疑难解答