使用以下SQL操作来优化数据库:1. 删除支付方式为“邮局汇款”的所有订单信息:

Delete from orders where p_id = (Select p_id from payments where p_mode='邮局汇款')
  1. 显示类别名称为家用电器商品的信息:
Select * from goods Where t_id=(select t_id from types where t_name='家用电器')