如何在MySQL中使用select和insert查询?

时间:2016-05-30 11:09:28

标签: mysql

您好,我是Mysql的新手。我有一个叫做课程的表(c_id,c_name)。我插入了c_id并将c_name留空了。现在,如何使用insert查询中的select语句输入该特定c_id的c_name?

1 个答案:

答案 0 :(得分:2)

使用简单的更新查询,因为您已经插入了行。例如。 (用你的id替换x):

 update course set c_name = "your value" where c_id = x