SELECT favorite_id,MO,name,image_id,case image_id
when 0 then (select image_path as image_path from images where image_id in (select default_image from registration where reg_id=9))
else (select image_path as image_path from images where image_id=b.image_id and active=1)
end
FROM buddies b where reg_id=9
在这个选择中:
select image_path as image_path
我需要命名列名,但是因为在运行查询时没有出现列的显示名称的情况下选择...
我如何命名此列以进行显示?