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

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

How to use Attributes to manage code annotations in PHP8? With the release of PHP8, an exciting new feature was introduced, namely Attributes. Attributes is a method of code annotation that allows us to add metadata to classes, methods, and attributes in a structured way. In this article, we will explore how to use Attributes to manage code annotations in PHP8 and provide some specific code examples. 1. What is Attrib?

How to use Attributes to add custom annotations to classes in PHP8? Custom annotations are a way to add metadata to a class or method, which can help us obtain and process additional information on a specific class or method at runtime. In PHP8, the concept of Attributes was introduced, which allows us to easily add custom annotations to classes. This article will introduce how to use Attributes to implement custom annotations for classes in PHP8 and provide specific code examples. In PHP8, since

des encryption is a symmetric encryption method that is widely used on the Internet. PHP supports des encryption through the mcrypt extension library. To use des encryption in Php, you need to install the mcrypt extension library first. The following is an example of encryption and decryption. Copy the code. The code is as follows: $iv_size=mcrypt_get_iv_size(MCRYPT_RIJNDAEL_256,MCRYPT_MODE_ECB);$iv=mcrypt_create_iv($iv_size,MCRYPT_RAND);$key="Thisisaverysecretkey";//Key$

How to extend the functionality of classes through Attributes in PHP8? In PHP8, a new feature was introduced - Attributes, also known as attributes. It can add metadata to entities such as classes, class properties, methods, and functions, and these metadata can be accessed and used at runtime. Attributes provide a concise and flexible way to extend the functionality of classes and help developers better organize and understand code. In order to better understand and apply Attributes, the following

How to use Attributes to extend the functionality of a class in PHP8? With the release of PHP8, new language features Attributes were introduced. Attributes is a feature that adds metadata in the form of annotations in the code. By using Attributes, we can add additional information to elements such as classes, methods, properties, etc. to meet more complex business requirements and development specifications. In this article, we will detail using the Attributes extension in PHP8

How to enhance the functionality of custom classes through Attributes in PHP8? With the release of PHP8, a new feature - Attributes (attributes) was introduced. Through Attributes, developers can add additional metadata to classes, methods, and properties to enhance the functionality and flexibility of custom classes. In this article, we will detail how to use Attributes to enhance the functionality of custom classes and provide specific code examples. 1. What are Attributes? At

How to manage code metadata through PHP8's Attributes? With the release of PHP8, Attributes have become a new feature in PHP development. Attributes are used to associate metadata with code, thereby adding more contextual information and annotations to the code. By using Attributes, developers can better manage code metadata and provide a more flexible and readable structure for the code. In PHP8, Attributes are passed in the class

PHP8.1 update: more powerful Attributes Since the release of PHP8.0, the PHP community has been looking forward to the arrival of PHP8.1. PHP8.1 brings many exciting new features and improvements, the most notable of which is Attributes. Attributes are a new feature introduced in PHP 8.1. They provide a more elegant and powerful way to add metadata to classes, methods and properties. In the past, we used to use Document Blocks (DocB
