INSERT INTO Customers (CustomerName, Country)
SELECT SupplierName, Country FROM Suppliers;
customer table has other columns also except those "CustomerName" and "Country"
This is my simple sql query.
Please help me to write it in KORMA SQL.
INSERT INTO Customers (CustomerName, Country)
SELECT SupplierName, Country FROM Suppliers;
customer table has other columns also except those "CustomerName" and "Country"
This is my simple sql query.
Please help me to write it in KORMA SQL.
Copyright © 2021 Jogjafile Inc.
You can to that almost the same as the sql: