CREATE TABLE `t_depart` (
  `departID` int(11) unsigned NOT NULL AUTO_INCREMENT ,
  `classes` varchar(50) DEFAULT NULL ,
  `deptID` int(11) DEFAULT NULL,
  `plateNumber` varchar(20) NOT NULL ,
  `route` varchar(100) DEFAULT NULL ,
  `sendTime` datetime DEFAULT NULL ,
  `sendNumber` tinyint(4) DEFAULT '0' ,
  `station` int(11) DEFAULT NULL ,
  `createBy` int(11) DEFAULT NULL ,
  `driverName` varchar(40) DEFAULT NULL ,
  `checkMan` int(11) DEFAULT NULL ,
  `checkTime` datetime DEFAULT NULL  ,
  `checkNumber` tinyint(4) DEFAULT '0' ,
  `longitude` decimal(9,6) DEFAULT NULL ,
  `latitude` decimal(8,6) DEFAULT NULL ,
  `gpsTime` datetime DEFAULT NULL ,
  `judgeType` tinyint(4) DEFAULT '0' ,
  `openNumber` tinyint(4) DEFAULT NULL ,
  `re` varchar(200) DEFAULT NULL ,
  PRIMARY KEY (`departID`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8;这个表中 字段createBy,checkMan引用了user表的主键ID
在页面展示中 我怎么才能展示出来这两个user中name的值(name表示用户名)jsp