网站首页 网站源码
website
站点相关全部源代码,隐藏了一些关于服务器的信息
create table RecipeDetailTags
(
	Id int,
	DetailId int null,
	TagId int null
);

create unique index RecipeDetailTags_Id_uindex
	on RecipeDetailTags (Id);

alter table RecipeDetailTags
	add constraint RecipeDetailTags_pk
		primary key (Id);

alter table RecipeDetailTags modify Id int auto_increment;

loading