5.1.4USE SAMPLEGO-- 创建字符数据数据表CREATE TABLE 字符数据(char_string char(5)varchar_string varchar(5)text_string text)GO-- 向字符数据数据表中添加两行数据INSERT INTO 字符数据VALUES (test test this is a test for text data type)I