可以修改Magento的订单号,Invoice,Shipment和Credit Memo号码的插件-Flex Invoice Posted 星期五, 09/25/2009 - 20:34 by Kevin Von 在Magento中订单号的生成方式是默认的方式,可能有很多人不喜欢这样的格式。包括Invoice,Shipment和Credit Memo号码的。这个插件就是可以自定义
方法一:普通联结 select cust_name, order_num from Customers C,Orders O where C.cust_id = O.cust_id order by cust_name,order_num; 方法二:使用内连接 select cust_name,order_num from Customers C inner join Orders O