0

我有一个countries三列的表country_name, country_code, country_flag

该表有 250 行,但该country_flag列目前全部为空,因为我现在已经创建了它。

此列的目的是包含该国家/地区的标志文件(图像)的路径Images\Flags\UK.gif(每个标志文件都被命名为国家代码)。现在我想编写一个查询,应该从列中选择国家代码并在开头和结尾country_code附加字符串,就像这样Images\Flags\.gif

'Images\Flags\' + country_code + '.gif' 

然后country_flag用这个值更新列。

如果这是可能的,那么它将以更少的努力更新表格,我将获得country_flag列中的所有图像路径。

4

1 回答 1

4

尝试这个

Update countries set country_flag = 'Images\Flags\' + country_code + '.gif'
于 2012-06-09T07:31:37.200 回答