dongpian4954 2011-04-15 09:31
浏览 23
已采纳

如何使用外键关系从数据库中检索列?

I have user table which stores all his info and I also created a table called user_education through schema.yml [uid column in this table refers to uid of user table]. Model classes have been created using Symfony. I'm able to access all columns of user table. E.g. sf_user->getUser()->getUsername();.

User model class also has a method, getUserEducations(). I need to access a column called coursename of user_education table, but am unable to do so. Currently, I'm trying [ sf_user->getUser()->getUserEducations()->getCoursename(); ] But I'm getting the whole array of records. I can't retrieve a single column by that array.

How can I retrieve it?

  • 写回答

1条回答 默认 最新

  • douya6229 2011-04-15 14:07
    关注

    You can do this by:

    // get the first tuple
    $sf_user->getUser()->getUserEducations()->getFirst()->getCoursename();
    

    or

    // get the last tuple
    $sf_user->getUser()->getUserEducations()->getLast()->getCoursename();
    

    The proper way (if the user has many educations) is to iterate between the instances:

    foreach($sf_user->getUser()->getUserEducations() as $education){
        //do something with like
        echo $education->getCoursename();
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?
  • ¥15 c++头文件不能识别CDialog
  • ¥15 Excel发现不可读取的内容