当前位置:网站首页>mysql修改数据类型_MySQL修改字段类型[通俗易懂]
mysql修改数据类型_MySQL修改字段类型[通俗易懂]
2022-06-30 17:46:00 【全栈程序员站长】
大家好,又见面了,我是你们的朋友全栈君。
mysql> alter table 表名 modify column 字段名 类型。数据库中address表 city字段是varchar(30),修改类型可以用(谨慎修改类型,可能会导致原有数据出错)。
mysql> alter table address modify column city char(30);修改长度可以用(修改长度,要保证不短与已有数据,以保证原有数据不出错)mysql> alter table address modify column city varchar(50);
alter table 表名 modify column 字段名 类型;news 表里的title 字段 原来长度是 100个字符,现长度要改成130个字符。
mysql 修改字段类型:alter table news modify column title text;我发现使用这句sql也可以直接修改字段原本的类型!
通常可以写成 alter table 表名 modify column 列名 新的列的类型例如:student表中列sname的类型是char(20),现在要修改为varchar(20),SQL语句如下alter table student modify column sname varchar(20);
同时修改列名和列的数据类型的方法:通常可以写成 alter table 表名 change column 旧列名 新列名 新的列类型student表中列sname的类型是char(20),现在要修改为stuname varchar(20)alter table student change column sname stuname varchar(20);
发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/132251.html原文链接:https://javaforall.cn
边栏推荐
- Memory Limit Exceeded
- Courage to be hated: Adler's philosophy class: the father of self inspiration
- Rhai - Rust 的嵌入式脚本引擎
- Dependencies tool to view exe and DLL dependencies
- OneFlow源码解析:算子签名的自动推断
- 链表中环的入口结点-链表专题
- GameFi链游系统开发NFT技术
- When selecting smart speakers, do you prefer "smart" or "sound quality"? This article gives you the answer
- 基于STM32F1的环境光与微距离检测系统
- 《客从何处来》
猜你喜欢

php利用队列解决迷宫问题

Swin-transformer --relative positional Bias

TCP packet sticking problem

What if icloud photos cannot be uploaded or synchronized?

What if the apple watch fails to power on? Apple watch can not boot solution!

Vulnerability recurrence ----37. Apache unomi Remote Code Execution Vulnerability (cve-2020-13942)

Deep learning compiler understanding

《所谓情商高,就是会说话》读书笔记

Digital intelligent supplier management system solution for coal industry: data driven, supplier intelligent platform helps enterprises reduce costs and increase efficiency

OneFlow源码解析:算子签名的自动推断
随机推荐
What if icloud photos cannot be uploaded or synchronized?
20220607跌破建议零售价,GPU市场正全面走向供过于求...
OneFlow源码解析:算子签名的自动推断
基于STM32F1的环境光与微距离检测系统
ONEFLOW source code parsing: automatic inference of operator signature
torch.roll
【TiDB】TiCDC canal_ Practical application of JSON
Hospital online consultation applet source code Internet hospital source code smart hospital source code
深度学习编译器的理解
SaaS project management system solution for the financial service industry helps enterprises tap a broader growth service space
《被讨厌的勇气:“自我启发之父”阿德勒的哲学课》
传统微服务框架如何无缝过渡到服务网格 ASM
Techo Youth2022学年高校公开课:直播连麦的背后,探索音视频技术如何应用
使用excel快速生成sql语句
Sword finger offer 16 Integer power of numeric value
医院在线问诊小程序源码 互联网医院源码 智慧医院源码
Sword finger offer 17 Print from 1 to maximum n digits
挑选智能音箱时,首选“智能”还是“音质”?这篇文章给你答案
全栈代码测试覆盖率及用例发现系统的建设和实践
Reading notes of "high EQ means being able to talk"