select top 10 KS_Enterprise.CompanyName,KS_Enterprise.ContactMan,KS_Enterprise.Mobile,KS_Enterprise.Intro,KS_Enterprise.UserName,KS_User.UserFace from KS_Enterprise,KS_User order by id desc
select top 10 KS_Enterprise.CompanyName,KS_Enterprise.ContactMan,KS_Enterprise.Mobile,KS_Enterprise.Intro,KS_Enterprise.UserName,KS_User.UserFace from KS_Enterprise,KS_User where ks_enterpirse.username=ks_user.username order by id desc
select top 10 a.ID,a.CompanyName,a.ContactMan,a.Mobile,a.Intro,a.UserName,b.UserFace from KS_Enterprise a inner join KS_User b on a.username=b.username order by a.id desc