Home > Database > Mysql Tutorial > Mysql select语句设置默认值的方法_MySQL

Mysql select语句设置默认值的方法_MySQL

WBOY
Release: 2016-06-01 13:13:40
Original
1366 people have browsed it

1.在没有设置默认值的情况下:


SELECT userinfo.id, user_name, role, adm_regionid, region_name , create_time
FROM userinfo
LEFT JOIN region ON userinfo.adm_regionid = region.id


结果:

Mysql select语句设置默认值的方法_MySQL

设置显示默认值:


SELECT userinfo.id, user_name, role, adm_regionid, IFNULL(region_name,0) as region_name, create_time
FROM userinfo
LEFT JOIN region ON userinfo.adm_regionid = region.id


即:如果region_name一列的值为空,则显示为0,结果为:

Mysql select语句设置默认值的方法_MySQL

本文来自:http://blog.csdn.net/xyw_blog/article/details/26250331
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