MySQL 数据库常用基础命令有哪些?
mysql 常用基础命令
在 mysql 数据库中,基础命令是数据库操作的基石。通过使用这些命令,你可以创建、修改和管理数据库及表。
建表语句
功能型语句
- select:从表中检索数据。
- insert:向表中插入新数据。
- update:更新表中的现有数据。
- delete:从表中删除数据。
示例
创建一个名为 users 的表:
create table users ( id int not null auto_increment, name varchar(255) not null, email varchar(255) unique not null, primary key (id) );
在 users 表中插入一条记录:
insert into users (name, email) values ('john doe', 'john.doe@example.com');
从 users 表中检索所有记录:
select * from users;
更新 users 表中的记录,将 email 修改为 jane.doe@example.com:
update users set email = 'jane.doe@example.com' where id = 1;
删除 users 表中 id 为 1 的记录:
DELETE FROM users WHERE id = 1;