PHP 中一个mysql查询的问题?
问题是这样的:
<code>做一个APP接口,获取联系人列表,但是联系人分 0.管理员 1.绑定用户 2.亲朋好友 3.app好友 ,然后有一张im表,里面有个对应的im_id,当联系人为0和1时,就返回im_id,如果是2,3,则不返回. 如果只是单纯的返回,没有类型条件的话,join就行了,但是现在有了类型的区别. 这个怎么做?</code>
回复内容:
问题是这样的:
<code>做一个APP接口,获取联系人列表,但是联系人分 0.管理员 1.绑定用户 2.亲朋好友 3.app好友 ,然后有一张im表,里面有个对应的im_id,当联系人为0和1时,就返回im_id,如果是2,3,则不返回. 如果只是单纯的返回,没有类型条件的话,join就行了,但是现在有了类型的区别. 这个怎么做?</code>
假设获取联系人列表为user表,你意思是这个user表中有联系人类型是吧
既然你说要用到join,那就可能是两张表,那你这两张表必然存在联系
SELECT im.im_id WHERE user LEFT JOIN im ON user.im_id=im.im_id WHERE user.im_id IN (0,1);
其实没怎么看懂诶?
如果是分类型的话加一个where限制不就好了0 0
比如WHERE im.im_id IN (0,1)

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

One of the major changes introduced in MySQL 8.4 (the latest LTS release as of 2024) is that the "MySQL Native Password" plugin is no longer enabled by default. Further, MySQL 9.0 removes this plugin completely. This change affects PHP and other app

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

CakePHP is an open source MVC framework. It makes developing, deploying and maintaining applications much easier. CakePHP has a number of libraries to reduce the overload of most common tasks.

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

A string is a sequence of characters, including letters, numbers, and symbols. This tutorial will learn how to calculate the number of vowels in a given string in PHP using different methods. The vowels in English are a, e, i, o, u, and they can be uppercase or lowercase. What is a vowel? Vowels are alphabetic characters that represent a specific pronunciation. There are five vowels in English, including uppercase and lowercase: a, e, i, o, u Example 1 Input: String = "Tutorialspoint" Output: 6 explain The vowels in the string "Tutorialspoint" are u, o, i, a, o, i. There are 6 yuan in total

If you are an experienced PHP developer, you might have the feeling that you’ve been there and done that already.You have developed a significant number of applications, debugged millions of lines of code, and tweaked a bunch of scripts to achieve op
