如何在 MySQL 'insert' 语句中使用 'select'

How to use #39;select #39; in MySQL #39;insert#39; statement(如何在 MySQL insert 语句中使用 select)
本文介绍了如何在 MySQL 'insert' 语句中使用 'select'的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试将其他行插入到需要从另一个表中检索值的表中.下面是一个示例查询:

I'm trying to insert additional rows into a table which requires a value to be retrieved from another table. Below is an example query:

insert into a.grades (rollno, grade)
values(select rollno from b.students where ssn=12345, 'A');

b.students表的结构是rollno, ssn, name.

我知道上面的查询是错误的.有没有办法在插入行时从其他表中检索 1 个值?

I knew the above query is wrong. Is there a way to retrieve 1 value from other table while inserting a row?

推荐答案

INSERT INTO a.grades (rollno, grade)
    SELECT rollno, 'A' FROM b.students WHERE ssn = 12345;

一些 DBMS 会接受以下内容,并在 SELECT 语句周围加上一组额外的括号:

Some DBMS would accept the following, with an extra set of parenthesis around the SELECT statement:

INSERT INTO a.grades (rollno, grade)
   VALUES((SELECT rollno FROM b.students WHERE ssn = 12345), 'A');

这篇关于如何在 MySQL 'insert' 语句中使用 'select'的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Hibernate reactive No Vert.x context active in aws rds(AWS RDS中的休眠反应性非Vert.x上下文处于活动状态)
Bulk insert with mysql2 and NodeJs throws 500(使用mysql2和NodeJS的大容量插入抛出500)
Flask + PyMySQL giving error no attribute #39;settimeout#39;(FlASK+PyMySQL给出错误,没有属性#39;setTimeout#39;)
auto_increment column for a group of rows?(一组行的AUTO_INCREMENT列?)
Sort by ID DESC(按ID代码排序)
SQL/MySQL: split a quantity value into multiple rows by date(SQL/MySQL:按日期将数量值拆分为多行)