【转】Magento2 数据库操作

直接操作数据库

$objectManager = \Magento\Framework\App\ObjectManager::getInstance();
$resource = $objectManager->get('Magento\Framework\App\ResourceConnection');
$connection = $resource->getConnection();
$tableName = $resource->getTableName('employee');

Select Data from table
$sql = "Select * FROM " . $tableName;
$result = $connection->fetchRow($sql); //get one info,返回二维数组
$result = $connection->fetchAll($sql);   //get all info

Delete Data from table
$sql = "Delete FROM " . $tableName." Where emp_id = 10";
$connection->query($sql);

Insert Data into table
$sql = "Insert Into " . $tableName . " (emp_id, emp_name, emp_code, emp_salary) Values ('','XYZ','ABD20','50000')";
$connection->query($sql);

Update Data into table
$sql = "Update " . $tableName . "Set emp_salary = 20000 where emp_id = 12";
$connection->query($sql);

 

addFieldToFilter

protected  $_productCollectionFactory ;
public  function __construct (
        \Magento\Catalog\Model\ResourceModel\Product\CollectionFactory  $productFactory
     )  {
         $this ->_productCollectionFactory  =  $productFactory ;
     }
     public  function getProductCollection ( )
     {
       return    $this ->_productCollectionFactory -> create ( ) -> addAttributeToSelect ( '*' ) -> addFieldToFilter ( 'sku’,'test ');
     
     }

Equal: eq

Now we use equal to filter production collection.

$this ->_productCollectionFactory -> addFieldToFilter ( 'status' ,  array ( 'eq'  =>  1 ) ) ;  // Using the operator
$this ->_productCollectionFactory -> addFieldToFilter ( 'status' ,  1 ) ;  // Without using the operator

Not Equals – neq

Now we use not equal to filter production collection.

$this ->_productCollectionFactory -> addFieldToFilter ( 'sku' ,  array ( 'neq'  =>  'test-product' ) ) ;

Like – like

Now we use Like to filter production collection.

$this ->_productCollectionFactory -> addFieldToFilter ( 'sku' ,  array ( 'like'  =>  'UX%' ) ) ;

Not Like – nlike

Now we use not like to filter production collection.

$this ->_productCollectionFactory -> addFieldToFilter ( 'sku' ,  array ( 'nlike'  =>  'err-prod%' ) ) ;

In – in

Now we use In to filter production collection.

$this ->_productCollectionFactory -> addFieldToFilter ( 'entity_id' ,  array ( 'in'  =>  array ( 1 , 4 , 98 ) ) ) ;

Not In – nin

Now we use not In to filter production collection.

$this ->_productCollectionFactory -> addFieldToFilter ( 'entity_id' ,  array ( 'nin'  =>  array ( 1 , 4 , 98 ) ) ) ;

NULL – null

Now we use null to filter production collection.

$this ->_productCollectionFactory -> addFieldToFilter ( 'description' ,  array ( 'null'  =>  true ) ) ;

Not NULL – notnull

Now we use not null to filter production collection.

$this ->_productCollectionFactory -> addFieldToFilter ( 'description' ,  array ( 'notnull'  =>  true ) ) ;

Greater Than – gt

Now we use greater than to filter production collection.

$this ->_productCollectionFactory -> addFieldToFilter ( 'entity_id' ,  array ( 'gt'  =>  5 ) ) ;

Less Than – lt

Now we use less than to filter production collection.

$this ->_productCollectionFactory -> addFieldToFilter ( 'entity_id' ,  array ( 'lt'  =>  5 ) ) ;

Greater Than or Equals To- gteq

Now we use greater than to filter production collection.

$this ->_productCollectionFactory -> addFieldToFilter ( 'entity_id' ,  array ( 'gteq'  =>  5 ) ) ;

Less Than or Equals To – lteq

Now we use less than equal to filter production collection.

$this ->_productCollectionFactory -> addFieldToFilter ( 'entity_id' ,  array ( 'lteq'  =>  5 ) ) ;

 

打印SQL语句

$collection = $this->_order->getCollection()->addFieldToFilter('created_at',array('like' => '2018-10%'));
echo $collection->getSelect()->__toString(); //打印sql语句

打印getCollection结果数量

$collection = $this->_order->getCollection()->addFieldToFilter('created_at',array('like' => '2018-10%'));
echo $collection->count(); //打印sql语句

https://my.oschina.net/ganfanghua/blog/3029100

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/437620.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

数据结构 - 队列(非环形队列,以及优化成环形队列)

1)队列的定义与实现形式-方式 2)队列实现思路(非环形,下面进行优化) 3)代码实现(注意并不是环形) package DataStructures.queue;import java.util.Scanner;/*** 使用数组模拟队列*…

爬取网易云音乐歌曲特色榜单信息

网易云音乐(iframe内的歌单) 刚开始学习做下记录 需要先下载好所需浏览器内核 我时谷歌,下载地址 http://chromedriver.storage.googleapis.com/index.html 然后没了,自己F12扒拉下就行了 运行: 左侧随便点击一个榜单后,复制ur…

【转】.htaccess 详解

.htaccess是什么 .htaccess文件(或者"分布式配置文件")提供了针对目录改变配置的方法, 即,在一个特定的文档目录中放置一个包含一个或多个指令的文件, 以作用于此目录及其所有子目录。作为用户,所能使用的命…

数据结构 - 单链表(Linked List)实现在内存中实现数据以链表形式生成并根据序号排序

下面实现一个例子来进行学习 1)介绍 单链表的逻辑结构 在内存中的实际结构 具体创建示意图: 2)代码实现 例子 1。第一个程序在添加的时候并没有按照序号排序,如果在添加的时候把位置改变输出的时候序号会改变 package DataStr…

Mysql count() 语句

百万数据测试 select count(主键) from table 执行效率: select count(*) AS AGGREGATE from table 以上测试均再 navicat 工具进行 由于各种原因,sql执行时间可定存在一定误差,但最终结果不变。

【转】magento性能优化的教程(非常详细)

Magento是一套专业开源的电子商务系统,Magento设计得非常灵活,具有模块化架构体系和丰富的功能但有朋友会发现此模块用到了会发现非常的缓慢了,那么下面我们来看关于magento性能优化的例子。 前面优化 mod_deflate模块,将text、 css 和 jav…

java数据结构 -链表 -获取有效节点个数,单链表中倒数k个节点

// 1.获取到单链表的节点的个数(如果有头结点,不统计头结点)public static int getLength(HeroNode head){if (head.next null){return 0;}int length 0;//定义一个辅助变量,HeroNode cur head.next;while(cur !null){length;c…

php国密sm4

加解密代码摘自网络&#xff0c;出处忘记了&#xff0c;这里就不附链接&#xff0c;对原创说声抱歉&#xff01; 先附上代码&#xff1a; <?phpClass SM4Util {public $SM4_CK [0x00070e15, 0x1c232a31, 0x383f464d, 0x545b6269,0x70777e85, 0x8c939aa1, 0xa8afb6bd, 0xc…

【转】可道云kodexplorer搭建私有云后的配置优化

一、上传下载速度优化 首先明确可道云没有对上传下载做任何限制&#xff0c;速度快慢和网络环境有关。可道云是基于http上传&#xff0c;所以和其他http上传速度基本一致&#xff1b;可以对比其他web系统或网站说附件上传速度。同其他例如webdav、FTP、QQ传输等软件底层协议不一…

phpStydy+wordpress 安装部署

1、先准备工具包 下载phpstudy&#xff0c;下载地址&#xff1a;https://www.xp.cn/ 下载wordpress &#xff0c;下载地址&#xff1a;https://cn.wordpress.org/download/ 2、安装phpStudy&#xff0c;下一步操作即可 3、安装完成后&#xff0c;检测环境配置&#xff0c;php、…

java数据结构 - 单链表(腾讯面试题实现单链表反转)

直接上实现代码 //单链表的反转public static void reverseList(HeroNode head){//如果当前链表为空&#xff0c;或只有一个节点&#xff0c;无需反转if (head.next null || head.next.next null){return ;}//定义一个辅助变量&#xff0c;帮助我们遍历HeroNode cur head.n…

数据结构 - 单链表(百度面试题单链表的倒序打印)

方法1&#xff1a;反转打印&#xff08;但是会改变链表结构&#xff0c;不建议&#xff09; https://blog.csdn.net/weixin_43736084/article/details/101939789 方法2&#xff1a;存入栈中&#xff0c;在出栈 public static void reversePrint(HeroNode head){if (head.next…

数据结构 - 链表(双向链表学习)

程序里有几个注释的地方还是需要特别注意的&#xff0c;根据单链表自己的逻辑来写一遍双向链表&#xff0c;可能有几个细节处理的不到位。 package DataStructures.LinkedList;public class DoubleLinkedListDemo {public static void main(String []args){System.out.println…

【转】Mac下 如何配置虚拟机软件Parallel Desktop--超详细

Mac下 如何配置虚拟机软件Pparallel Desktop--超详细 Mac 的双系统解决方案有两种&#xff0c;一种是使用Boot Camp分区安装独立的Windows&#xff0c;一种是通过安装Parallels Desktop一类的虚拟机软件运行Windows。采用虚拟机的方式优势更明显&#xff0c;可以灵活的在两个系…

数据结构 - 链表(单向环形链表)(约瑟夫问题)

问题如下&#xff08;与分析&#xff09; 构建思路 输入一个数&#xff0c;数到这个数的小孩出圈&#xff0c;出圈顺序的思路 代码实现 根据图解&#xff0c;来一步一步实现 //根据用户输入&#xff0c;计算小孩出圈顺序/**** param startNo 表示从第几个小孩开始数数* param …

【转】什么是ERP、SCM、CRM?

ERP、SCM、CRM的区别 &#xff08;1&#xff09;从管理理念上来说&#xff0c;ERP的管理理念是提高企业内部资源的计划和控制能力&#xff0c;讲究的是在满足客户、及时交货的同时最大限度地降低各种成本&#xff0c;通过提高内部运转效率来提高对客户的服务质量&#xff0c;是…

数据结构 - 栈(链表实现栈的入栈出栈)

学完链表和栈&#xff0c;数组模拟栈学完后&#xff0c;自己根据链表写了个链栈&#xff0c;虽然只是简单的实现了入栈出栈遍历。收获还是很大的。 在push这里思考了一会&#xff0c;思路是&#xff1a;传入一个数字&#xff0c;push里创建一个节点node&#xff0c;把数据加入…

【转】理解OAuth 2.0

作者&#xff1a; 阮一峰 日期&#xff1a; 2014年5月12日 OAuth是一个关于授权&#xff08;authorization&#xff09;的开放网络标准&#xff0c;在全世界得到广泛应用&#xff0c;目前的版本是2.0版。 本文对OAuth 2.0的设计思路和运行流程&#xff0c;做一个简明通俗的解…

数据结构- 栈(实现综合计算器)(一位数计算 扩展到 多位数计算)

思路 代码&#xff08;可以看到这里的数字只能是单位数字&#xff0c;那么如何改成可以是多位数呢&#xff1f;&#xff01;往下看&#xff09; package stack;public class Calculator {public static void main(String[] args) {//完成表达式运算String expression "7…

【转】什么是staging server

原文链接&#xff1a;http://blog.csdn.net/blade2001/article/details/7194895 软件应用开发的经典模型有这样几个环境&#xff1a;开发环境(development)、集成环境(integration)、测试环境(testing)、QA验证&#xff0c;模拟环境(staging)、生产环境(production)。 通常一个…