CREATE TABLE Products (
ID int,
name VARCHAR(70),
price NUMBER(8,2),
primary key (ID, name)
);
drop table Instock;
/* Delete the tables if they already exist */
create table Instock (
ID int,
quantity int
);
データベースに 2 つのテーブルがあります。このような出力をテーブルとして表示する2つのテーブルが必要です
ID Name Price Quantity