search
HomeBackend DevelopmentPHP Tutorial 一次将两个属性拿出,该如何处理

一次将两个属性拿出
include("conn.php");
$rs=mysql_query("
SELECT products_des_options_values.options_values
FROM products_des_options_values
JOIN products_des_attributes ON products_des_options_values.id = products_des_attributes.products_des_options_values_id
JOIN products ON products.id = products_des_attributes.products_id 
join products_des_options on products_des_options.id = products_des_attributes.products_des_options_id
WHERE product_type='41' and STATUS !='D' and products_des_options.id =31 and ppcode like '%ACK2804N%'
order by products_des_options_values.options_values

union

SELECT products_des_options_values.options_values
FROM products_des_options_values
JOIN products_des_attributes ON products_des_options_values.id = products_des_attributes.products_des_options_values_id
JOIN products ON products.id = products_des_attributes.products_id 
join products_des_options on products_des_options.id = products_des_attributes.products_des_options_id
WHERE product_type='41' and STATUS !='D' and products_des_options.id =35 and ppcode like '%ACK2804N%'
order by products_des_options_values.options_values ");

while($row=mysql_fetch_array($rs) and $row2=mysql_fetch_array($rs2))
{  
echo $V="$row[options_values]
";
echo $A="$row2[options_values]
";
echo $V * $A."

";
}
 

?>

我在phpmydamin下运行,老是报错:#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'SELECT options_values FROM products_des_options_values JOIN products_des_attribu' at line 2




------解决方案--------------------
鉴于你的表名比较长。建议查询时为每个表起个别名。然后查询列和条件加上别名。

合并的话。用in 或者or 或者union all 都可以。

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
如何在PHP8中使用Attributes管理代码注解?如何在PHP8中使用Attributes管理代码注解?Oct 18, 2023 am 09:48 AM

如何在PHP8中使用Attributes管理代码注解?随着PHP8的发布,一个令人兴奋的新功能引入了,那就是Attributes(特性)。Attributes是一种代码注解的方式,使得我们可以以一种结构化的方式为类、方法和属性添加元数据。在本文中,我们将探讨如何在PHP8中使用Attributes管理代码注解,并提供一些具体的代码示例。一、什么是Attrib

PHP8中如何使用Attributes为类添加自定义注解?PHP8中如何使用Attributes为类添加自定义注解?Oct 18, 2023 am 10:16 AM

PHP8中如何使用Attributes为类添加自定义注解?自定义注解是一种在类或方法上添加元数据的方式,它可以帮助我们在运行时获取和处理特定的类或方法上的附加信息。在PHP8中,引入了Attributes的概念,它使我们可以轻松地为类添加自定义注解。本文将介绍如何在PHP8中使用Attributes来实现类的自定义注解,并提供具体的代码示例。在PHP8中,自

PHP和Java des的加密解密实例分析PHP和Java des的加密解密实例分析Apr 29, 2023 am 09:40 AM

des加密是对称加密中在互联网应用的比较多的一种加密方式,php通过mcrypt扩展库来支持des加密,要在Php中使用des加密,需要先安装mcrypt扩展库下面是加密解密的实例复制代码代码如下:$iv_size=mcrypt_get_iv_size(MCRYPT_RIJNDAEL_256,MCRYPT_MODE_ECB);$iv=mcrypt_create_iv($iv_size,MCRYPT_RAND);$key="Thisisaverysecretkey";//密钥$

PHP8如何通过Attributes扩展类的功能?PHP8如何通过Attributes扩展类的功能?Oct 25, 2023 am 11:54 AM

PHP8如何通过Attributes扩展类的功能?在PHP8中,引入了一个新的功能-Attributes,也被称为是属性。它可以为类、类的属性、方法和函数等实体添加元数据,并且这些元数据可以在运行时被访问和使用。Attributes提供了一种简洁、灵活的方式来扩展类的功能,并且可以帮助开发者更好地组织和理解代码。为了更好地理解和应用Attributes,下面

如何在PHP8中使用Attributes扩展类的功能?如何在PHP8中使用Attributes扩展类的功能?Oct 19, 2023 am 09:13 AM

如何在PHP8中使用Attributes扩展类的功能?随着PHP8的发布,新的语言特性Attributes(属性)被引入。Attributes是一种在代码中以注解的形式添加元数据的功能。通过使用Attributes,我们可以为类、方法、属性等元素添加额外的信息,以满足更复杂的业务需求和开发规范。在本文中,我们将详细介绍在PHP8中使用Attributes扩展

PHP8中如何通过Attributes增强自定义类的功能?PHP8中如何通过Attributes增强自定义类的功能?Oct 24, 2023 pm 12:28 PM

PHP8中如何通过Attributes增强自定义类的功能?随着PHP8的发布,引入了新的特性——Attributes(属性)。通过Attributes,开发者可以在类、方法和属性上添加额外的元数据,以增强自定义类的功能和灵活性。在本文中,我们将详细介绍如何使用Attributes来增强自定义类的功能,并提供具体的代码示例。一、什么是Attributes?At

PHP8.1更新:更强大的AttributesPHP8.1更新:更强大的AttributesJul 09, 2023 pm 03:37 PM

PHP8.1更新:更强大的Attributes自从PHP8.0发布以来,PHP社区一直在期待着PHP8.1的到来。PHP8.1带来了许多令人激动的新功能和改进,其中最引人注目的是Attributes(属性)。Attributes是PHP8.1引入的一种新特性,它们提供了一种更优雅、更强大的方式来为类、方法和属性添加元数据。在过去,我们常常使用文档块(DocB

如何通过PHP8的Attributes来管理代码元数据?如何通过PHP8的Attributes来管理代码元数据?Oct 20, 2023 pm 07:12 PM

如何通过PHP8的Attributes来管理代码元数据?随着PHP8的发布,Attributes(属性)成为了PHP开发中的一个新特性。Attributes被用于将元数据与代码相关联,从而为代码添加更多的上下文信息和注解。通过使用Attributes,开发者可以更好地管理代码元数据,并为代码提供更加灵活和可读的结构。在PHP8中,Attributes通过在类

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment