您好,欢迎来到爱够旅游网。
搜索
您的当前位置:首页mysql查询类型转换

mysql查询类型转换

来源:爱够旅游网

欢迎进入Linux社区论坛,与200万技术人员互动交流 >>进入 在mysql查询时最好不要发生类型转换,如把varchar转换成int mysql explain select * from user where name=1\G //如果你确定name字段是整型就不要把它转化成字符串,不加单引号 **********************

欢迎进入Linux社区论坛,与200万技术人员互动交流 >>进入

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

  mysql> explain select * from user where name=1\G

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

  *************************** 1. row ***************************

  id: 1

  select_type: SIMPLE

  table: user

  type: ALL

  possible_keys: index_name_password

  key: NULL

  key_len: NULL

  ref: NULL

  rows: 99727

  Extra: Using where

  1 row in set (0.02 sec)

  mysql> explain select * from user where name='1'\G

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

  *************************** 1. row ***************************

  id: 1

  select_type: SIMPLE

  table: user

  type: ref

  possible_keys: index_name_password

  key: index_name_password

  key_len: 111

  ref: const

  rows: 1

  Extra: Using where

  1 row in set (0.00 sec)

Copyright © 2019- igbc.cn 版权所有 湘ICP备2023023988号-5

违法及侵权请联系:TEL:199 1889 7713 E-MAIL:2724546146@qq.com

本站由北京市万商天勤律师事务所王兴未律师提供法律服务