-1
我有兩個表:operations
與客戶端處理數據和customers
與年齡數據。我想創建新表,vlookup
和customers
添加新列Age
到operations
,但它亙古不變的工作:VLOOKUP等效於MySQL
CREATE TABLE new_schema.total AS (
SELECT new_schema.operations.Id_check,new_schema.operations.ID_client, new_schema.customers.Age
INNER JOIN Age ON new_schema.operations.ID_client=new_schema.customers.ID_client
);
不確定這與Excel VLOOKUP函數有什麼關係。 – Barmar
什麼「不起作用」?怎麼了?你期望會發生什麼? – AndySavage