Báo cáo tài liệu vi phạm
Giới thiệu
Kinh doanh - Marketing
Kinh tế quản lý
Biểu mẫu - Văn bản
Tài chính - Ngân hàng
Công nghệ thông tin
Tiếng anh ngoại ngữ
Kĩ thuật công nghệ
Khoa học tự nhiên
Khoa học xã hội
Văn hóa nghệ thuật
Sức khỏe - Y tế
Văn bản luật
Nông Lâm Ngư
Kỹ năng mềm
Luận văn - Báo cáo
Giải trí - Thư giãn
Tài liệu phổ thông
Văn mẫu
THỊ TRƯỜNG NGÀNH HÀNG
NÔNG NGHIỆP, THỰC PHẨM
Gạo
Rau hoa quả
Nông sản khác
Sữa và sản phẩm
Thịt và sản phẩm
Dầu thực vật
Thủy sản
Thức ăn chăn nuôi, vật tư nông nghiệp
CÔNG NGHIỆP
Dệt may
Dược phẩm, Thiết bị y tế
Máy móc, thiết bị, phụ tùng
Nhựa - Hóa chất
Phân bón
Sản phẩm gỗ, Hàng thủ công mỹ nghệ
Sắt, thép
Ô tô và linh kiện
Xăng dầu
DỊCH VỤ
Logistics
Tài chính-Ngân hàng
NGHIÊN CỨU THỊ TRƯỜNG
Hoa Kỳ
Nhật Bản
Trung Quốc
Hàn Quốc
Châu Âu
ASEAN
BẢN TIN
Bản tin Thị trường hàng ngày
Bản tin Thị trường và dự báo tháng
Bản tin Thị trường giá cả vật tư
Tìm
Danh mục
Kinh doanh - Marketing
Kinh tế quản lý
Biểu mẫu - Văn bản
Tài chính - Ngân hàng
Công nghệ thông tin
Tiếng anh ngoại ngữ
Kĩ thuật công nghệ
Khoa học tự nhiên
Khoa học xã hội
Văn hóa nghệ thuật
Y tế sức khỏe
Văn bản luật
Nông lâm ngư
Kĩ năng mềm
Luận văn - Báo cáo
Giải trí - Thư giãn
Tài liệu phổ thông
Văn mẫu
NGÀNH HÀNG
NÔNG NGHIỆP, THỰC PHẨM
Gạo
Rau hoa quả
Nông sản khác
Sữa và sản phẩm
Thịt và sản phẩm
Dầu thực vật
Thủy sản
Thức ăn chăn nuôi, vật tư nông nghiệp
CÔNG NGHIỆP
Dệt may
Dược phẩm, Thiết bị y tế
Máy móc, thiết bị, phụ tùng
Nhựa - Hóa chất
Phân bón
Sản phẩm gỗ, Hàng thủ công mỹ nghệ
Sắt, thép
Ô tô và linh kiện
Xăng dầu
DỊCH VỤ
Logistics
Tài chính-Ngân hàng
NGHIÊN CỨU THỊ TRƯỜNG
Hoa Kỳ
Nhật Bản
Trung Quốc
Hàn Quốc
Châu Âu
ASEAN
BẢN TIN
Bản tin Thị trường hàng ngày
Bản tin Thị trường và dự báo tháng
Bản tin Thị trường giá cả vật tư
Thông tin
Tài liệu Xanh là gì
Điều khoản sử dụng
Chính sách bảo mật
0
Trang chủ
Công Nghệ Thông Tin
Cơ sở dữ liệu
Database Modeling & Design Fourth Edition- P23
Đang chuẩn bị liên kết để tải về tài liệu:
Database Modeling & Design Fourth Edition- P23
Thảo Linh
87
5
pdf
Không đóng trình duyệt đến khi xuất hiện nút TẢI XUỐNG
Tải xuống
Database Modeling & Design Fourth Edition- P23: Database technology has evolved rapidly in the three decades since the rise and eventual dominance of relational database systems. While many specialized database systems (object-oriented, spatial, multimedia, etc.) have found substantial user communities in the science and engineering fields, relational systems remain the dominant database technology for business enterprises. | 5.1 Transformation Rules and SQL Constructs 97 Technician 1 A technician uses exactly one notebook for each project. Each notebook belongs to one technician for each project. Note that a technician may still work on many projects and maintain different notebooks for different projects. Project 1 1 Notebook uses-notebook create table technician emp_id char 10 primary key emp_id create table project project_name char 20 primary key project_name create table notebook notebook_no integer primary key notebook_no create table uses_notebook emp_id char 10 project_name char 20 notebook_no integer not null primary key emp_id project_name foreign key emp_id references technician on delete cascade on update cascade foreign key project_name references project on delete cascade on update cascade foreign key notebook_no references notebook on delete cascade on update cascade unique emp_id notebook_no unique project_name notebook_no uses_notebook emp_id project_name notebook_no 35 alpha 5001 35 gamma 2008 42 delta 1004 42 epsilon 3005 81 gamma 1007 93 alpha 1009 93 beta 5001 a one-to-one-to-one ternary association Functional dependencies emp_id project_name notebook_no emp_id notebook_no project_name project_name notebook_no emp_id Figure 5.6 UML ternary and n-ary relationships 98 CHAPTER 5 Transforming the Conceptual Data Model to SQL Employee Each employee assigned to a project works at only one location for that project but can be at a different location for a different project. At a given location an employee works on only one project. At a particular location there can be many employees assigned to a given project. create table employee emp_id char 10 emp_name char 20 primary key emp_id create table project project_name char 20 primary key project_name create table location loc_name char 15 primary key loc_name create table assigned_to emp_id char 10 project_name char 20 loc_name char 15 not null primary key emp_id project_name foreign key emp_id references employee on .
TÀI LIỆU LIÊN QUAN
Database Modeling & Design Fourth Edition- P1
Database Modeling & Design Fourth Edition- P2
Database Modeling & Design Fourth Edition- P3
Database Modeling & Design Fourth Edition- P4
Database Modeling & Design Fourth Edition- P5
Database Modeling & Design Fourth Edition- P6
Database Modeling & Design Fourth Edition- P7
Database Modeling & Design Fourth Edition- P8
Database Modeling & Design Fourth Edition- P9
Database Modeling & Design Fourth Edition- P10
Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.