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
);
我的数据库中有两个表。我想要两个表显示一个输出作为一个看起来像这样的表
ID Name Price Quantity