concurrencyLevel
我使用query1检索了stock_id,并将其作为$ row ['stock_id']。我想通过首先在数组中保存该功能来显示此stock_id的所有功能。
这是我的代码无效
'stock' table >>
stock_id integer NOT NULL AUTO_INCREMENT,
modal varchar(40) NOT NULL DEFAULT "",
company varchar(40) NOT NULL DEFAULT "",
bike_number varchar(10) NOT NULL DEFAULT "",
lair_id integer NOT NULL DEFAULT 0,
PRIMARY KEY(stock_id)
'feature' table >>
feature_id integer NOT NULL AUTO_INCREMENT,
feature varchar(40) NOT NULL DEFAULT "",
primary key (feature_id)
'stock_feature' linking table >>
stock_id integer NOT NULL,
feature_id integer NOT NULL,
primary key(stock_id, feature_id)