You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
726 B
XML

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper namespace="com.zhiyun.zhiyun03.game.mapper.GameMapper">
<select id="queryGame" resultType="com.zhiyun.zhiyun03.game.vo.GameVo">
select c.id,
c.game_name,
c.game_brief,
c.game_url,
d.dir_name,
c.game_img,
c.game_addtime,
c.game_updatetime,
c.start_time,
c.end_time
from game as c
inner join
(select * from directory) as d
on c.dir_id = d.id
</select>
</mapper>