sql >> Base de Datos >  >> RDS >> Sqlserver

SELECCIONE EN una variable de tabla en T-SQL

Prueba algo como esto:

DECLARE @userData TABLE(
    name varchar(30) NOT NULL,
    oldlocation varchar(30) NOT NULL
);

INSERT INTO @userData (name, oldlocation)
SELECT name, location FROM myTable
INNER JOIN otherTable ON ...
WHERE age > 30;