Home > PHP Framework > ThinkPHP > body text

What is the usage of distinct in thinkphp

WBOY
Release: 2022-04-25 10:03:45
Original
5989 people have browsed it

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();
Copy after login

The generated SQL statement is:

SELECT DISTINCT name FROM think_user
Copy after login

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);
Copy after login

: "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!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!