Kohana 数据库列别名,只有一两个,剩下的
有没有办法使用数据库模块为一两列添加别名并保持其余部分不变。
# TAKING THIS EXAMPLE
$result = DB::select(array('longcolumnname1', 'col1'), array('longcolumnname2', 'aliascol2'))->from('table_name')->execute()->current();
# AND TURNING IT INTO SOMETHING THIS... WITH THE '*'
$result = DB::select(array('longcolumnname1', 'col1'), array('longcolumnname2', '*'))->from('table_name')->execute()->current();
我的主要原因是我正在进行左连接,有时会返回空,我的 id 在结果中被覆盖,我不想必须分解修复此结果 id 问题所需的每一列...有吗一个简单的方法...或者我只是懒惰...
Is there a way to alias a column or two and leave the rest intact using Database module.
# TAKING THIS EXAMPLE
$result = DB::select(array('longcolumnname1', 'col1'), array('longcolumnname2', 'aliascol2'))->from('table_name')->execute()->current();
# AND TURNING IT INTO SOMETHING THIS... WITH THE '*'
$result = DB::select(array('longcolumnname1', 'col1'), array('longcolumnname2', '*'))->from('table_name')->execute()->current();
My main reason is that I'm doing a left join that sometimes returns empty, my id is being overwritten in the results and I'd hate to have to break down every column needed just to fix this result id issue... Is there an easy way... or am I just being lazy...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
编辑:
Edit: