在MySQL中,可以使用INSERT语句来为表的指定列添加新的数据。语法如下:
INSERT INTO table_name (column1, column2, column3, ...) VALUES (value1, value2, value3, ...);
例如,如果有一张名为"students"的表,包含列"id"、“name"和"age”,则可以使用以下语句为这张表的指定列添加数据:
INSERT INTO students (name, age) VALUES ('Alice', 20);
这将在"students"表中添加一条新的记录,只包含"name"和"age"这两列的数据,其它列会使用默认值或者NULL。