内容摘要:复制CreatePROCEDURE[dbo].[news_selectNewNews] AS BEGIN selecttop10

复制Create PROCEDURE [dbo].[news_selectNewNews] AS BEGIN select top10 n.id,据库
n.title,n.createTime,c.[name],c.id as caId from news n inner join category c on n.caId=c.id order by n.createTime desc END 1.2.3.4.5.6.7.8.9.10.11.12.13.14.15.