


Inserting Values into a Table from a Non-Scalar Subquery
In SQL Server, inserting values into a table based on a subquery that returns multiple results can be challenging. Consider the following scenario:
You have two tables:
- article
- prices
You want to insert rows into the prices table with specific values for the group, id, and price columns, where the id values are derived from a subquery that selects matching IDs from the article table.
Incorrect Approach:
Trying to use a subquery with more than one result as the value for a column in an INSERT statement can result in an error, as demonstrated by the following incorrect SQL statement:
INSERT INTO prices (group, id, price) VALUES (7, (select articleId from article WHERE name LIKE 'ABC%'), 1.50);
Correct Solution:
To resolve this issue, use a SELECT statement to retrieve the desired values and insert them into the target table. Assign the constant values for the group and price columns directly within the SELECT statement:
insert into prices (group, id, price) select 7, articleId, 1.50 from article where name like 'ABC%';
In this statement, the subquery returns the article IDs matching the specified name criteria, and the constant values 7 and 1.50 are explicitly assigned to the group and price columns, respectively.
The above is the detailed content of How to Insert Multiple Rows into a SQL Server Table from a Non-Scalar Subquery?. For more information, please follow other related articles on the PHP Chinese website!

The article discusses using MySQL's ALTER TABLE statement to modify tables, including adding/dropping columns, renaming tables/columns, and changing column data types.

Article discusses configuring SSL/TLS encryption for MySQL, including certificate generation and verification. Main issue is using self-signed certificates' security implications.[Character count: 159]

Article discusses strategies for handling large datasets in MySQL, including partitioning, sharding, indexing, and query optimization.

Article discusses popular MySQL GUI tools like MySQL Workbench and phpMyAdmin, comparing their features and suitability for beginners and advanced users.[159 characters]

The article discusses dropping tables in MySQL using the DROP TABLE statement, emphasizing precautions and risks. It highlights that the action is irreversible without backups, detailing recovery methods and potential production environment hazards.

The article discusses creating indexes on JSON columns in various databases like PostgreSQL, MySQL, and MongoDB to enhance query performance. It explains the syntax and benefits of indexing specific JSON paths, and lists supported database systems.

Article discusses securing MySQL against SQL injection and brute-force attacks using prepared statements, input validation, and strong password policies.(159 characters)

Article discusses using foreign keys to represent relationships in databases, focusing on best practices, data integrity, and common pitfalls to avoid.


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

Dreamweaver Mac version
Visual web development tools

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

Atom editor mac version download
The most popular open source editor

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

SublimeText3 Chinese version
Chinese version, very easy to use
