-1
私は2つのテーブル:operations
とクライアント処理のデータ、customers
のデータがあります。私は、新しいテーブル、vlookup
を作成し、customers
からoperations
に新しい列Age
を追加したいが、それは仕事をdoesnot: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