Files
Database/Homework/Homework250324/Homework250324.sql
2025-11-06 09:53:12 +08:00

11 lines
411 B
Transact-SQL
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
USE Homework250324;
Go
-- 创建三建工程项目的供应情况视图包括SNO, PNO, QTY
CREATE VIEW view_sanjian as select sno, pno, qty FROM j, spj where j.jno = spj.jno and j.jname = N'三建';
Go
-- 找出三建工程项目使用的各种零件代码及其数量
SELECT pno, sum(qty) from view_sanjian group by pno;
Go
-- 找出供应商S1的供应情况
select * from view_sanjian where sno = 'S1';
Go