Home > Database > Mysql Tutorial > body text

mysql查询类型转换_MySQL

WBOY
Release: 2016-06-01 13:31:07
Original
1337 people have browsed it

bitsCN.com

 mysql查询类型转换

 

在mysql查询时最好不要发生类型转换,如把varchar转换成int

 

mysql> explain select * from user where name=1/G
Copy after login

//如果你确定name字段是整型就不要把它转化成字符串,不加单引号

*************************** 1. row ***************************           id: 1  select_type: SIMPLE        table: user         type: ALLpossible_keys: index_name_password          key: NULL      key_len: NULL          ref: NULL         rows: 99727        Extra: Using where1 row in set (0.02 sec)mysql> explain select * from user where name='1'/G
Copy after login

//如果你确定name字段是字符串就不要把它转化成整型,加单引号

*************************** 1. row ***************************           id: 1  select_type: SIMPLE        table: user         type: refpossible_keys: index_name_password          key: index_name_password      key_len: 111          ref: const         rows: 1        Extra: Using where1 row in set (0.00 sec)
Copy after login

 


bitsCN.com
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!