Home Database Mysql Tutorial mysql修改表

mysql修改表

Jun 07, 2016 pm 03:01 PM
200 linux mysql Revise Community forum Enter

欢迎进入Linux社区论坛,与200万技术人员互动交流 >>进入 修改表结构: alter [ignore] table table specification table structure change 包括表属性改变,列属性改变,完整性约束改变。 1.表属性改变 1.1重命名表名 mysql alter table student rename to

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

  修改表结构:

  alter [ignore] table

  包括表属性改变,列属性改变,完整性约束改变。

  1.表属性改变

  1.1重命名表名

  mysql> alter table student rename to s;

  Query OK, 0 rows affected (0.03 sec)

  也可以直接使用rename命令改名:

  mysql> rename table s to student;

  Query OK, 0 rows affected (0.13 sec)

  1.2表排序改变

  mysql> alter table student order by stu_id desc;

  mysql> select * from student;

  +--------+----------+---------+-----------+

  | stu_id | stu_name | stu_tel | stu_score |

  +--------+----------+---------+-----------+

  |      4 | d        |     154 |        63 |

  |      3 | c        |     153 |        62 |

  |      2 | b        |     152 |        61 |

  |      1 | a        |     151 |        60 |

  +--------+----------+---------+-----------+

  2列属性改变

  2.1 添加列

  mysql> alter table student

  -> add sex char(1) after stu_name;

  Query OK, 4 rows affected (0.34 sec)

  Records: 4  Duplicates: 0  Warnings: 0

  mysql> select * from student;

  +--------+----------+------+---------+-----------+

  | stu_id | stu_name | sex  | stu_tel | stu_score |

  +--------+----------+------+---------+-----------+

  |      1 | a        | NULL |     151 |        60 |

  |      2 | b        | NULL |     152 |        61 |

  |      3 | c        | NULL |     153 |        62 |

  |      4 | d        | NULL |     154 |        63 |

  +--------+----------+------+---------+-----------+

  4 rows in set (0.02 sec)

  新添加的列默认放在最后一列,且默认填充空值。这里使用after指定了新增列sex放在stu_name后面。如果新增列设置不能为空,那么mysql将根据列的数据类型填入实际的值:对于数值填入0,对于字符串填入空字符串,对于日期填入0000-00-00,对于时间填入00:00:00.

  2.2删除列

  mysql> alter table student

  -> drop sex;

  Query OK, 4 rows affected (0.33 sec)

  Records: 4  Duplicates: 0  Warnings: 0

  2.3修改列属性

  初始列属性:

  +-------------+-----------+

  | column_name | data_type |

  +-------------+-----------+

  | stu_id      | int       |

  | stu_name    | varchar   |

  | stu_tel     | int       |

  | stu_score   | int       |

  +-------------+-----------+

  将stu_tel列修改为tel char型,并放在stu_score后面。

  mysql> alter table student

  -> change stu_tel tel char(3) after stu_score;;

  Query OK, 4 rows affected (0.23 sec)

  +-------------+-----------+

  | column_name | data_type |

  +-------------+-----------+

  | stu_id      | int       |

  | stu_name    | varchar   |

  | stu_score   | int       |

  | tel         | char      |

  +-------------+-----------+

[1] [2] 

mysql修改表

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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Will R.E.P.O. Have Crossplay?
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What computer configuration is required for vscode What computer configuration is required for vscode Apr 15, 2025 pm 09:48 PM

VS Code system requirements: Operating system: Windows 10 and above, macOS 10.12 and above, Linux distribution processor: minimum 1.6 GHz, recommended 2.0 GHz and above memory: minimum 512 MB, recommended 4 GB and above storage space: minimum 250 MB, recommended 1 GB and above other requirements: stable network connection, Xorg/Wayland (Linux)

vscode cannot install extension vscode cannot install extension Apr 15, 2025 pm 07:18 PM

The reasons for the installation of VS Code extensions may be: network instability, insufficient permissions, system compatibility issues, VS Code version is too old, antivirus software or firewall interference. By checking network connections, permissions, log files, updating VS Code, disabling security software, and restarting VS Code or computers, you can gradually troubleshoot and resolve issues.

What is vscode What is vscode for? What is vscode What is vscode for? Apr 15, 2025 pm 06:45 PM

VS Code is the full name Visual Studio Code, which is a free and open source cross-platform code editor and development environment developed by Microsoft. It supports a wide range of programming languages ​​and provides syntax highlighting, code automatic completion, code snippets and smart prompts to improve development efficiency. Through a rich extension ecosystem, users can add extensions to specific needs and languages, such as debuggers, code formatting tools, and Git integrations. VS Code also includes an intuitive debugger that helps quickly find and resolve bugs in your code.

vscode Previous Next Shortcut Key vscode Previous Next Shortcut Key Apr 15, 2025 pm 10:51 PM

VS Code One-step/Next step shortcut key usage: One-step (backward): Windows/Linux: Ctrl ←; macOS: Cmd ←Next step (forward): Windows/Linux: Ctrl →; macOS: Cmd →

How to execute code with vscode How to execute code with vscode Apr 15, 2025 pm 09:51 PM

Executing code in VS Code only takes six steps: 1. Open the project; 2. Create and write the code file; 3. Open the terminal; 4. Navigate to the project directory; 5. Execute the code with the appropriate commands; 6. View the output.

How to switch Chinese mode with vscode How to switch Chinese mode with vscode Apr 15, 2025 pm 11:39 PM

VS Code To switch Chinese mode: Open the settings interface (Windows/Linux: Ctrl, macOS: Cmd,) Search for "Editor: Language" settings Select "Chinese" in the drop-down menu Save settings and restart VS Code

What is the main purpose of Linux? What is the main purpose of Linux? Apr 16, 2025 am 12:19 AM

The main uses of Linux include: 1. Server operating system, 2. Embedded system, 3. Desktop operating system, 4. Development and testing environment. Linux excels in these areas, providing stability, security and efficient development tools.

vscode running task shortcut key vscode running task shortcut key Apr 15, 2025 pm 09:39 PM

Run tasks in VSCode: Create tasks.json file, specify version and task list; configure the label, command, args, and type of the task; save and reload the task; run the task using the shortcut key Ctrl Shift B (macOS for Cmd Shift B).

See all articles