How to use DISTINCT here in my CODEIGNITER request

$q = $this->db->select(' books.title, reserved_books.id, reserved_books.isbn, reserved_books.price, reserved_books.item_sold, reserved_books.date_sold, reserved_books.total_amount ') ->from('reserved_books') ->join('books','reserved_books.isbn= books.isbn') ->limit($limit,$offset); 

How can I use here separately in my request? reserved_books.isbn is unique.

+6
source share
5 answers

Try below:

 $this->db->distinct(); 

but Distinct will not always work. You must add - >group_by("name_of_the_column_which_needs_to_be unique");

 $this->db->group_by('column_name'); 
+23
source

Adds the keyword "DISTINCT" to the query before selecting

 $this->db->distinct(); 

Renouncement

+1
source

Here is how to do it

 $select = array( 'books.title', 'reserved_books.id', 'DISTINCT reserved_books.isbn', 'reserved_books.price', 'reserved_books.item_sold', 'reserved_books.date_sold', 'reserved_books.total_amount' ); $q = $this->db ->select($select) ->from('reserved_books') ->join('books','reserved_books.isbn= books.isbn') ->group_by('reserved_books.isbn') ->limit($limit,$offset); 
+1
source

You do not need a connection

  $query=$this->db->distinct()->select('table_attribute')->where('condition')->get('table_name'); return $query->result(); 
+1
source

Here is the best way to delete a duplicate entry.

 $query = $this->db->select("inf.id, inf.sku, inf.fab_id, inf.sku, inf.amount, inf.min_length, inf.num_of_pieces, inf.width ,inf.type") ->join("retailcat","retailcat.sku=SUBSTRING(inf.sku,1,19) AND retailcat.category=218","INNER") ->distinct() ->get("input_factor inf"); 
0
source

Source: https://habr.com/ru/post/956458/


All Articles