Magento - 选择一些客户信息

发布于 2024-10-08 18:18:04 字数 82 浏览 2 评论 0原文

为了我开始实现的一个模块的目的,我想要进行一个选择查询,为我提供一个或多个客户的地址、姓名。

我对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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

酒中人 2024-10-15 18:18:04

您可以使用 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();

世态炎凉 2024-10-15 18:18:04

您必须搜索表 customer_entitycustomer_address_entity

You must search the tables customer_entity and customer_address_entity

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文