distinct (Boolean parameter)->field('name ')->select();"."/> distinct (Boolean parameter)->field('name ')->select();".">

Home  >  Article  >  PHP Framework  >  What is the usage of distinct in thinkphp

What is the usage of distinct in thinkphp

WBOY
WBOYOriginal
2022-04-24 18:48:035947browse

In thinkphp, the distinct() method is used to remove duplicate values ​​and can return unique values. The parameter of the distinct method is a Boolean value, and the syntax is "$Model->distinct(Boolean parameter )->field('name')->select();".

What is the usage of distinct in thinkphp

The operating environment of this article: Windows 10 system, ThinkPHP version 5, Dell G3 computer.

What is the usage of distinct in thinkphp

The purpose of distinct() in TP is mainly to remove duplicate values

The DISTINCT method is used to return the only different value.

$Model->distinct(true)->field('name')->select();

The generated SQL statement is:

SELECT DISTINCT name FROM think_user

The example is as follows:

What is the usage of distinct in thinkphp

The display is like this

What is the usage of distinct in thinkphp

If you add distinct:

What is the usage of distinct in thinkphp

The displayed result is

What is the usage of distinct in thinkphp

below Recommended study for the posted code

$offernum = M('offer')->distinct(true)->where('order_id='.$order_id)->field('user_id,number')->select();
dump($offernum);

: "PHP Video Tutorial"

The above is the detailed content of What is the usage of distinct in thinkphp. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn