数据库读取一张表有3个栏目title,author,time,如何可以是title可以连接啊???

2020-07-10 文化 123阅读
题目描述不清。假定@flname是作者的姓名而不是姓,怎参数@flname正好符合后面描述的“要求输入作者的姓名”。有假定title表是出版书信息表,authors是作者信息,titleauthor是出版书和作者的对应关系表。titleauthor表中title字段和title表中的title关联,author字段和authors表中的author字段关联,则过程可以这样写:
create procedure proc1
(
@flname nvarchar(10)
)
as
select a.*,b.* from titles a,authors b,titleauthor c where c.title=a.title and c.author=b.author and b.author like '%' + @flname + '%'
if @@ROWCOUNT<1
select '没有结果'
声明:你问我答网所有作品(图文、音视频)均由用户自行上传分享,仅供网友学习交流。若您的权利被侵害,请联系fangmu6661024@163.com