sql >> Database >  >> RDS >> Sqlserver

Hoe tabelvariabelen samen te voegen?

Wat bedoel je met SQL die geen tabelvariabelen ondersteunt?

Het werkt voor mij

DECLARE @table1 AS TABLE (Col1 INT, Col2 VARCHAR(100))
DECLARE @table2 AS TABLE (Col1 INT, Col2 VARCHAR(100))

SELECT *
FROM @table1 t1
FULL JOIN @table2 t2 on t1.Col1 = t2.Col1


  1. Entiteit Framework Core jsonb-kolomtype

  2. Spring Boot Database initialisatie MySQLException voor Trigger

  3. Speel Framework Image BLOB-bestand voor testobject Yaml

  4. Verbeter de afstemming van SQL Server-prestaties met deze 3 tips