How to assign default values ​​to fields when querying MySQL

How to assign default values ​​to fields when querying MySQL

need

When querying a field, you need to give the same value to a field.

You can hard-code this value or get it from the database

1. Hard-coded values

SELECT
 mfr_id AS mfrId,
 mfr_name AS mfrName,
 IFNULL(NULL, 587694978080178176) AS suppId
FROM
 mater_prod materProd

Query results

2. Get values ​​from the database

SELECT
 mfr_id AS mfrId,
 mfr_name AS mfrName,
 IFNULL(NULL, mfr_id) AS suppId
FROM
 mater_prod materProd

Query results

Supplementary knowledge: How to set a default value if the mysql query field is empty

In common cases, the following is to calculate inventory. If the inventory or locked inventory is empty, the default value is 0.

SELECT
(IFNULL(t_inventory.pro_number,0)-IFNULL(t_inventory.locked_number,0)) AS content_number
FROM
t_inventory

The above operation of assigning default values ​​to fields during MySQL query is all the content that the editor shares with you. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM.

You may also be interested in:
  • MySQL implementation of extracting and querying JSON type field data
  • MySQL retrieves data based on the JSON field content as a query condition (including JSON arrays)
  • Mybatis mysql fuzzy query method (CONCAT multiple fields) and bug
  • Sample code for implementing string split function in MySQL query field
  • Detailed explanation of querying JSON format fields in MySQL
  • Querying MySQL date and time fields

<<:  Vue realizes the product magnifying glass effect

>>:  How to install rabbitmq-server using yum on centos

Recommend

40 CSS/JS style and functional technical processing

1- Styling dropdown select boxes - Modify the dro...

Issues and precautions about setting maxPostSize for Tomcat

1. Why set maxPostSize? The tomcat container has ...

Detailed explanation of MySQL database paradigm

Preface: I have often heard about database paradi...

MySQL 5.6 zip package installation tutorial detailed

Previously, we all used files with the suffix .ms...

About the layout method of content overflow in table

What is content overflow? In fact, when there is ...

The implementation process of Linux process network traffic statistics

Preface Linux has corresponding open source tools...

Solution to Apache cross-domain resource access error

In many cases, large and medium-sized websites wi...

Example code for implementing transparent gradient effects with CSS

The title images on Zhihu Discovery columns are g...

Interpretation of the module for load balancing using nginx

Table of contents Two modules for using nginx for...

Detailed explanation of Docker basic network configuration

External Access Randomly map ports Using the -P f...

MySQL column to row conversion and year-month grouping example

As shown below: SELECT count(DISTINCT(a.rect_id))...

Complete steps for using Nginx+Tomcat for load balancing under Windows

Preface Today, Prince will talk to you about the ...

Why should MySQL fields use NOT NULL?

I recently joined a new company and found some mi...

MySQL inspection script (must read)

As shown below: #!/usr/bin/env python3.5 import p...