一次将两个属性拿出,该如何处理
一次将两个属性拿出
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 都可以。

热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

AI Hentai Generator
免费生成ai无尽的。

热门文章

热工具

记事本++7.3.1
好用且免费的代码编辑器

SublimeText3汉化版
中文版,非常好用

禅工作室 13.0.1
功能强大的PHP集成开发环境

Dreamweaver CS6
视觉化网页开发工具

SublimeText3 Mac版
神级代码编辑软件(SublimeText3)

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

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

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

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

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

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

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