sql - How do I get the table to display only data with a specific substring in it -


I have to show all the products in which they contain the word "transducers" I can not like I try to use And I get an invalid relational operator error. Whatever I can think, I have tried and nothing is working. I'm using SQL Developer 4

code:.

  Select product_name, a_product P include the name a_item i join p.product_id = i.product_id a_sales_order so i include .order_id = so.order_id at a_customer c so.customer_id = C.customer_id  

Output:

  PRODUCT_NAME name -------- ------------- --------- ---------------------------- ------------- ---- Aft Transducer Bus Electronics 75 Gauge Wire Line Timelines Aft Transducer Vollyrite NTS Transducer Every Mountain Sneaker Lock Switch Size NTS Transducer Size Up Sft Transducer 55 Vollyrite 75 The wire line size above  

I also mentioned that it has been tried to be used, but he gave me an error. I used that:

   

which I added after joining.

The desired output will look like this:

  PRODUCT_NAME name ------------------------- ---- - --------------------------------------------- After transducer bus electronics Transducer Vollyrite NTS transducer every mountain NTS transducer size up Sft Transducer 55 Vollyrite  after "div class =" itemprop = "text"> < P> You can not like because it is a problem for school, optional is REGEXP_LIKE:  
  SELECT product_name, name a_product p a_item i p.product_id = i.product_id a_sales_orde Join r as i.order_id = so.order_id at a_customer C. so.customer_id = c.customer_id where regexp_like (PRODUCT_NAME, 'transducer')  join 

Comments

Popular posts from this blog

ios - How do I use CFArrayRef in Swift? -

eclipse plugin - Run java code error: Workspace is closed -

c - Error on building source code in VC 6 -