MySQL 修改語句

2022-10-11 10:33:09 字數 1267 閱讀 6122

原表為:

# 案例:修改beauty表中姓楊的女神的**為12345

update beauty set phone=12345

where name like '楊%'

原表如下:

# 案例:修改boys表中id號為2的名稱為張飛,魅力值為10

update `boys` set `boyname`='張飛',`usercp`=10

# 案例:修改張無忌的女朋友的手機為114

update `boys` bo

inner join `beauty` b

on bo.`id`=b.`boyfriend_id`

set b.`phone`=114

where bo.`boyname`='張無忌'

# 案例:修改沒有男朋友的女神的男朋友編號都為2號(外連)

MySql 修改語句

修改語句update set 1.修改單錶的記錄 2.修改多表的記錄 一.修改單錶的記錄 案例一 修改beauty表中姓 和 的女神的 為23456789 update beauty set phone 23456789 where name like 和 案例二 修改boys表中id為2的名稱為張...

修改表字段mysql語句

修改表字段 create table register id int primary key auto increment,name varchar 10 default null unique key,age tinyint unsigned default 18,registime timest...

MYSQL修改表結構語句 alter

mysql修改表結構語句 alter create table user id int primary key auto increment,username varchar 20 unique,password varchar 20 not null,age int,birthday date 修...