MySQL中的字符串类型主要包括以下几种:
-- 创建一个包含VARCHAR和TEXT字段的表
CREATE TABLE example_table (
id INT AUTO_INCREMENT PRIMARY KEY,
short_text VARCHAR(255) NOT NULL,
long_text TEXT
);
-- 插入示例数据
INSERT INTO example_table (short_text, long_text) VALUES
('Hello, World!', 'This is a long text example that can contain multiple paragraphs and even images or other binary data.');
-- 查询并显示结果
SELECT * FROM example_table;
领取专属 10元无门槛券
手把手带您无忧上云