[MySQL]基本数据类型及表的基本操作
-- 创建一个名为'example_table'的表,包含不同的基本数据类型列
CREATE TABLE example_table (
id INT AUTO_INCREMENT PRIMARY KEY,
name VARCHAR(50) NOT NULL,
age INT NOT NULL,
email VARCHAR(100),
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);
-- 向'example_table'表中插入数据
INSERT INTO example_table (name, age, email) VALUES ('Alice', 25, 'alice@example.com');
INSERT INTO example_table (name, age, email) VALUES ('Bob', 30, 'bob@example.com');
-- 查询'example_table'表中的所有数据
SELECT * FROM example_table;
-- 更新'example_table'表中的数据,将Alice的年龄更新为26
UPDATE example_table SET age = 26 WHERE name = 'Alice';
-- 再次查询'example_table'表中的所有数据以验证更新
SELECT * FROM example_table;
-- 删除'example_table'表中名为'Bob'的记录
DELETE FROM example_table WHERE name = 'Bob';
-- 再次查询'example_table'表中的所有数据以验证删除
SELECT * FROM example_table;
这段代码展示了如何在MySQL中创建一个包含基本数据类型的表,如整数(INT)、字符串(VARCHAR)、时间戳(TIMESTAMP),以及如何对表进行插入(INSERT)、查询(SELECT)、更新(UPDATE)和删除(DELETE)操作。
评论已关闭