本周开始熟悉公司oracle数据库业务表.
由 协助提供IT作业申请单,练习简单SQL数据报表的编写,熟悉基本业务表单;
-- 课别(21/24) 账号 大分类 店别(104-106) 厂编 厂名 货号 品名 分店状态(1/2/3/5/7)
select * from items_st_status i
where section_no in (21,24)
and store_no between 104 and 106
and status in (1,2,3,5,7)
-- 区域 账号(NB33) 大分类(343) 中分类 小分类 厂编 厂名 货号 品名 状态 产地 items_st_status Items Supplier
select a.code 区域,a.usr 账号,a.grp_no 大分类,a.midgrp_no 中分类,a.subgrp_no 小分类,a.sup_no 厂编,b.company_name 厂名,a.item_no 货号,a.name 品名,a.status 状态,a.origin_cd 产地
from items a,supplier b
where a.sup_no = b.sup_no
and a.usr like '%NB33%' and a.grp_no = 343;