Dans SQL Server, cela insère 100 enregistrements de la table Customers dans tmpFerdeen: -
SELECT top(100)*
INTO tmpFerdeen
FROM Customers
Est-il possible de faire un SELECT INTO sur un UNION ALL SELECT: -
SELECT top(100)*
FROM Customers
UNION All
SELECT top(100)*
FROM CustomerEurope
UNION All
SELECT top(100)*
FROM CustomerAsia
UNION All
SELECT top(100)*
FROM CustomerAmericas
Vous ne savez pas trop où ajouter la clause INTO.