create view location
as
select
`call`.id as id,
`city`.value as city,
`region`.value as region,
`others`.value as others
from `call`
left join `city` on (`call`.city=`city`.id)
left join `region` on (`call`.region=`region`.id)
left join `others` on (`call`.others=`others`.id)
mysql 创建视图view
最新推荐文章于 2024-12-05 10:41:05 发布