《MySQL常用命令1 / 29 MySQL 常用命令汇总 http://www.database8.com 2011-3-1 2 / 29 Mysql 常用命令 show databases; 显示数据库 create database name; 创建数据库 use databasename; 选择数据库 drop database name 直接删除数据库,不提醒 show tables; 显示表 describe tablename; 显示具体的表结构 select 中加上 disti
Update `表名` SET title = CONCAT(title,’MV’) where articleid=3487 and title not like ‘%v’
您可能感兴趣的文章:mysql千万级数据大表该如何优化?MySQL大表中重复字段的高效率查询方法MySQL 删除大表的性能问题解决方案MYSQL数据库中的现有表增加新字段(列)MySQL命令行中给表添加一个字段(字段名、是否为空、默认值)MySql创建带解释的表及给表和字
表relation
create table relation(
id int primary key auto_increment,
userId int not null,
fanId int not null
);
插入几条数据
insert into relation(userId,fanId)
values(1,1) ,(1,1) ,(1,1), (2,2),(2,2) ,(3,3),(3,3);
表中的数据
id
userId
fanId
1
1
1