Home  >  Article  >  Database  >  MySQL table design tutorial: Create a simple user information table

MySQL table design tutorial: Create a simple user information table

WBOY
WBOYOriginal
2023-07-01 12:18:064423browse

MySQL table design tutorial: Create a simple user information table

In the process of developing Web applications, user information is a common requirement. In order to conveniently store and manage user information, we can use the MySQL database. This tutorial shows you how to create a simple user information table and provides corresponding code examples.

Let’s first define the fields of the user information table. A basic user information table can contain the following fields:

  • id: the user's unique identifier, as the primary key.
  • username: Username, used for login.
  • password: Password, used to verify identity.
  • email: Email address used to contact the user.
  • age: Age.
  • gender: Gender.
  • create_time: Creation time, used to record the user’s registration time.
  • update_time: update time, used to record the modification time of user information.

Next, we execute the following SQL statement to create the user information table through the MySQL command line client or graphical interface tool.

CREATE TABLE user_info (
  id INT(11) NOT NULL AUTO_INCREMENT,
  username VARCHAR(50) NOT NULL,
  password VARCHAR(50) NOT NULL,
  email VARCHAR(100) NOT NULL,
  age INT(3),
  gender ENUM('male', 'female'),
  create_time TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
  update_time TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  PRIMARY KEY (id),
  UNIQUE KEY (username),
  UNIQUE KEY (email)
);

The above SQL statement first uses the CREATE TABLE statement to create a table named user_info. We then defined each field's name, data type, and associated constraints. For example, the id field is defined as an integer type using INT(11), and is designated as the primary key (PRIMARY KEY); the username, password, and email fields are defined as a string type using VARCHAR, and are designated as non-null (NOT NULL), and are created separately. Unique key (UNIQUE KEY); the age field is defined as an integer type using INT(3), the gender field is defined as an enumeration type using ENUM('male', 'female'), and only the value is allowed to be 'male' or 'female' ;The create_time and update_time fields respectively use TIMESTAMP type, where the create_time field is set to the default value to the current time (DEFAULT CURRENT_TIMESTAMP), and the update_time field is set to automatically update when data is updated (ON UPDATE CURRENT_TIMESTAMP).

After creating the user information table, we can insert some sample data into the table. The following is an example of an INSERT INTO statement to insert a user record into the user_info table.

INSERT INTO user_info (username, password, eamil, age, gender)
VALUES ('testuser', '123456', 'test@example.com', 25, 'male');

In the above example, we use the INSERT INTO statement to insert the value of the relevant field into the corresponding column in the user_info table.

In order to query, update and delete user information, we can use SELECT, UPDATE and DELETE statements. For example:

-- 查询所有用户信息
SELECT * FROM user_info;

-- 查询年龄大于20岁的用户信息
SELECT * FROM user_info WHERE age > 20;

-- 更新密码为新值的用户信息
UPDATE user_info SET password = 'newpassword' WHERE username = 'testuser';

-- 删除用户名为testuser的用户信息
DELETE FROM user_info WHERE username = 'testuser';

The above example uses the SELECT statement to query user information from the user_info table, the UPDATE statement to update user information, and the DELETE statement to delete user records.

Through the above steps, we successfully created a simple user information table and performed related operations using SQL statements. In actual applications, we can add more fields and related operations as needed to meet business needs.

Summary: This tutorial shows you how to create a simple user information table using MySQL. By defining the fields, data types and constraints of the table, and using SQL statements to perform related operations, we can easily store and manage user information. I hope this tutorial has been helpful to your understanding of MySQL table design and operation.

The above is the detailed content of MySQL table design tutorial: Create a simple user information table. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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