sql >> Database teknologi >  >> RDS >> Sqlserver

Indsæt i flere tabeller baseret på de andre tabeldata

Som EzLo nævnte, er output din ven til at hente identitetsværdier indsat:

-- use a table _temp_org_records for output
if object_id('_temp_org_records') is not null drop table _temp_org_records;

-- create table with correct column datatypes
select top 0 UserID
into _temp_org_records
from UserProductMapping


INSERT INTO User (userlogin, Organisationid, emailaddress, username, userpassword)
OUTPUT inserted.UserID INTO _temp_org_records --all USerIDs will be saved into _temp_org_records
    SELECT 'AGT' + Code, organisationid, '[email protected]', 'User' + Code, '123'
    FROM organisation;

INSERT INTO UserProductMapping (UserID, ProductID) 
    SELECT t.UserID, productid.value
    FROM 
        _temp_org_records t
        cross join (values ('11'),('22'),('33'),('44'),('55')) as productid(value)

INSERT UserGroups 
    SELECT t.UserID, UserGroup.value
    FROM 
        _temp_org_records t
        cross join (values ('1'),('3')) as UserGroup(value)



  1. MariaDB JSON_KEYS() Forklaret

  2. PostgreSQL returnerer den nøjagtige eller nærmeste dato til den forespurgte dato

  3. få id'er for flere rækker indsat i psycopg2

  4. Kan jeg flette to databaser til én i Mysql, hvis de begge har det samme skema?