Specify default value
If no value is given when inserting a row, MySQL allows you to specify the default value to be used at this time. The default value is specified with the DEFAULT keyword in the column definition of the CREATE TABLE statement.
See the following example:
Input:
create table orderitems ( order_num int NOT NULL, order_item int NOT NULL, prod_id char(10) NOT NULL, quantity int NOT NULL DEFAULT1, item_price decimal(8,2) NOT NULL, PRIMARY KEY ( order_num,order_item) )ENGINE = InnoDB;
Output: This statement creates the orderitems table containing the items that make up the order (the order itself is stored in the orders table ). The quantity column contains the quantity of each item in the order. In this example, adding the text DEFAULT 1 to the column's description instructs MySQL to use the quantity 1 if no quantity is given.
Function not allowed Unlike most DBMS, MySQL does not allow the use of functions as default values, it only supports constants.
Use default values instead of NULL values Many database developers use default values instead of NULL columns, especially for columns used in calculations or data grouping.
Extended knowledge:
What is an engine type?
You may have noticed that the CREATE TABLE statements used so far all end with an ENGINE=InnoDB statement.
Like other DBMS, MySQL has an internal engine that specifically manages and processes data. When you use the CREATE TABLE statement, the engine actually creates the table, and when you use the SELECT statement or does other database processing, the engine handles your request internally. Most of the time, this engine is hidden within the DBMS and you don't need to pay too much attention to it.
But MySQL is different from other DBMS in that it has multiple engines. It packages multiple engines, all of which are hidden within the MySQL server, and can all execute commands such as CREATE TABLE and SELECT.
Why release multiple engines? Because they have different functions and features, choosing the right engine for different tasks can provide good functionality and flexibility.
Of course, you can completely ignore these database engines. If the ENGINE= statement is omitted, the default engine is used (most likely MyISAM ), which is used by default for most SQL statements. But not all statements use it by default, which is why the ENGINE= statement is important (and why two engines are used in the sample tables in this book).
The following are a few engines you need to know:
1.InnoDB is a reliable transaction processing engine, it does not support full-text search;
2.MEMORY in function Equivalent to MyISAM, but because the data is stored in memory (not disk), it is very fast (especially suitable for temporary tables);
3.MyISAM is an extremely high-performance engine that supports full-text search. But transaction processing is not supported.
Engine types can be mixed. Except for the productnotes table, which uses MyISAM, the sample tables in this book all use InnoDB. The reason is that the author wants to support transaction processing (hence, use InnoDB ), but also needs to support full text search in productnotes (hence, use MyISAM ).
Foreign keys cannot cross engines. There is a big flaw in mixing engine types. Foreign keys (used to enforce referential integrity) cannot span engines, that is, a table using one engine cannot reference a foreign key that has a table using a different engine.
So, which engine should you use? It depends on what features you need. MyISAM is probably the most popular engine due to its performance and features. But if you don't need reliable transaction processing, you can use other engines.
The above is the detailed content of Tutorial on specifying default values when mysql creates a data table. For more information, please follow other related articles on the PHP Chinese website!

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了关于架构原理的相关内容,MySQL Server架构自顶向下大致可以分网络连接层、服务层、存储引擎层和系统文件层,下面一起来看一下,希望对大家有帮助。

mysql的msi与zip版本的区别:1、zip包含的安装程序是一种主动安装,而msi包含的是被installer所用的安装文件以提交请求的方式安装;2、zip是一种数据压缩和文档存储的文件格式,msi是微软格式的安装包。

方法:1、利用right函数,语法为“update 表名 set 指定字段 = right(指定字段, length(指定字段)-1)...”;2、利用substring函数,语法为“select substring(指定字段,2)..”。

在mysql中,可以利用char()和REPLACE()函数来替换换行符;REPLACE()函数可以用新字符串替换列中的换行符,而换行符可使用“char(13)”来表示,语法为“replace(字段名,char(13),'新字符串') ”。

转换方法:1、利用cast函数,语法“select * from 表名 order by cast(字段名 as SIGNED)”;2、利用“select * from 表名 order by CONVERT(字段名,SIGNED)”语句。

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了关于MySQL复制技术的相关问题,包括了异步复制、半同步复制等等内容,下面一起来看一下,希望对大家有帮助。

在mysql中,可以利用REGEXP运算符判断数据是否是数字类型,语法为“String REGEXP '[^0-9.]'”;该运算符是正则表达式的缩写,若数据字符中含有数字时,返回的结果是true,反之返回的结果是false。

在mysql中,可利用“ALTER TABLE 表名 DROP INDEX unique key名”语句来删除unique key;ALTER TABLE语句用于对数据进行添加、删除或修改操作,DROP INDEX语句用于表示删除约束操作。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

Atom editor mac version download
The most popular open source editor

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool