题目8单选题
BookStore数据库中有出版社表Publisher(PublisherCode,Publisher,Telephone)在Publisher表中添加一条记录:"66"、"群众出版社"、"0321-76584391".SQL语句:________A. INSERTPublisherVALUES('66','群众出版社','0321-76584391')B. INSERTINTOPublisherVALUES('66','群众出版社','0321-76584391')C. INSERTINTOPublisherVALUES('群众出版社','66','0321-76584391')D. INSERTINTOPublisherVALUES('群众出版社',66,'0321-76584391')