Magento - 选择一些客户信息
为了我开始实现的一个模块的目的,我想要进行一个选择查询,为我提供一个或多个客户的地址、姓名。
我对magento数据库有点迷失,救命!
for the purpose of a module that I began to realize, I want to make a select query which gives me the address, name and surname of one or more clients.
I am a bit lost in the database magento, Help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 getSelect() 方法回显 magento 所做的每个选择。
对于一个客户端
echo Mage::getModel('customer/customer')->load('id')->getSelect();
或整个集合
echo Mage::getModel( '客户/客户')->getCollection()->getSelect();
You can echo out each select magento does with getSelect() method.
for one client
echo Mage::getModel('customer/customer')->load('id')->getSelect();
or whole collection
echo Mage::getModel('customer/customer')->getCollection()->getSelect();
您必须搜索表 customer_entity 和 customer_address_entity
You must search the tables customer_entity and customer_address_entity