FollowModel::getFollowingSql PHP Method

getFollowingSql() public method

获取关注查询SQL语句,具体使用不清楚
public getFollowingSql ( integer $uid ) : string
$uid integer 用户ID
return string 关注查询SQL语句
    public function getFollowingSql($uid)
    {
        return 'SELECT `fid` FROM ' . $this->getTableName() . ' WHERE `uid` = ' . intval($uid);
        // return "SELECT `fid` FROM {$this->tablePrefix}user_follow WHERE `uid` = '{$uid}'";
    }