为上次建好的数据库插入数据
USE hospital;
#插入药品
INSERT INTO drugcategory(typeID,typeName)VALUES(1,'处方药'),(2,'非处方药')
INSERT INTO druginformation(drugID,typeID,drugName,univalence,specification,inventory,drugDate)VALUES(1,1,'青霉素',12.50,'20片/盒',50000,'2020-12-10')
INSERT INTO druginformation(drugID,typeID,drugName,univalence,specification,inventory,drugDate)VALUES(2,1,'甘草片',8.60,'8片/盒',10000,'2020-12-10'),
(3,2,'阿司匹林',20.00,'6片/盒',8000,'2020-12-10'),(4,2,'阿莫西林',18.00,'8片/盒',30000,'2020-12-10'),(5,2,'莎普爱思',34.70,'25ml/瓶',5000,'2020-12-10')
#添加职位表
INSERT INTO positiontable(positionID,POSITION)VALUES(1,'住院医师'),(2,'主治医师'),(3,'副主任医师'),(4,'主任医师');
#添加员工
INSERT INTO loginuser(userID,EmployeeID,userName,paw,jurisdiction)VALUES(1,1,'黑旋风','123',1),(2,2,'及时雨','123',2),(3,3,'玉麒麟','123',1),(4,4,'入云龙','123',2),(5,5,'行者','123',3),(6,6,'托塔天王','123',4)
#添加科室表
INSERT INTO department(DepartmentNumber,DepartmentType)VALUES(1,'血液科'),(2,'骨科'),(3,