BookStore数据库中有出版社表Publisher(PublisherCode,Publisher,Telephone)在Publisher表中添加一条记录:“66”、“群众出版社”、“0321-76584391”。SQL语句:________。
BookStore数据库中有出版社表Publisher(PublisherCode,Publisher,Telephone)在Publisher表中添加一条记录:“66”、“群众出版社”、“0321-76584391”。SQL语句:________。
A.INSERTINTOPublisherVALUES('群众出版社','66','0321-76584391')
B.INSERTINTOPublisherVALUES('群众出版社',66,'0321-76584391')
C.INSERTINTOPublisherVALUES('66','群众出版社','0321-76584391')
D.INSERTPublisherVALUES('66','群众出版社','0321-76584391')
正确答案:C
Tag:信息系统与数据库技术 出版社 群众
时间:2021-03-08 16:01:56
- 上一篇:BookStore数据库关系图如下:查询所有客户的购书情况(也包括未购书人的信息),显示客户号(CustomerCode)、客户名(Name)和订单号(OrderCode)、购书时间(OrderTime)。SQL语句:SELECTCustomer.CustomerCode,Name,OrderCode,OrderTimeFROM________ONCustomer.CustomerCode=[Order].CustomerCode
- 下一篇:BookStore数据库中有出版社表Publisher(PublisherCode,Publisher,Telephone)将Publisher表中出版社代号(CustomerCode)为“01”的出版社联系电话(Telephone)修改为“010-79797979”。SQL语句:________。