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
Kỹ thuật lập trình
Joe Celko s SQL for Smarties - Advanced SQL Programming P29
Đang chuẩn bị liên kết để tải về tài liệu:
Joe Celko s SQL for Smarties - Advanced SQL Programming P29
Ðình Hảo
65
10
pdf
Không đóng trình duyệt đến khi xuất hiện nút TẢI XUỐNG
Tải xuống
Joe Celko s SQL for Smarties - Advanced SQL Programming P29. In the SQL database community, Joe Celko is a well-known columnist and purveyor of valuable insights. In Joe Celko's SQL for Smarties: Advanced SQL Programming, he picks up where basic SQL training and experience leaves many database professionals and offers tips, techniques, and explanations that help readers extend their capabilities to top-tier SQL programming. Although Celko denies that the book is about database theory, he nevertheless alludes to theory often to buttress his practical points. This title is not for novices, as the author points out. Instead, its intended audience. | 252 CHAPTER 11 CASE EXPRESSIONS CASE WHEN value exp 1 value exp 2 THEN NULL ELSE value exp 1 END 11.1.2 CASE Expressions with GROUP BY A CASE expression is very useful with a GROUP BY query. For example to determine how many employees of each gender by department you have in your Personnel table you can write SELECT dept_nbr SUM CASE WHEN gender M THEN 1 ELSE 0 AS males SUM CASE WHEN gender F THEN 1 ELSE 0 AS females FROM Personnel GROUP BY dept_nbr or SELECT dept_nbr COUNT CASE WHEN gender M THEN 1 ELSE NULL AS males COUNT CASE WHEN gender F THEN 1 ELSE NULL AS females FROM Personnel GROUP BY dept_nbr I am not sure if there is any general rule as to which form will run faster. Aggregate functions remove nulls before they perform their operations so the order of execution might be different in the else 0 and the else null versions. The previous example shows the case expression inside the aggregate function it is possible to put aggregate functions inside a case expression. For example assume you are given a table of employees skills CREATE TABLE PersonnelSkills emp_id CHAR 11 NOT NULL skill_id CHAR 11 NOT NULL primary_skill_ind CHAR 1 NOT NULL CONSTRAINT primary_skill_given CHECK primary_skill_ind IN Y N PRIMARY KEY emp_id skill_id 11.1 The CASE Expression 253 Each employee has a row in the table for each of his skills. If the employee has multiple skills she will have multiple rows in the table and the primary skill indicator will be a Y for her main skill. If she only has one skill which means one row in the table the value of primary_skill_ind is indeterminate. The problem is to list each employee once along with her only skill if she only has one row in the table or her primary skill if she has multiple rows in the table. SELECT emp_id CASE WHEN COUNT 1 THEN MAX skill_id ELSE MAX CASE WHEN primary_skill_ind Y THEN skill_id END ELSE NULL END END AS main_skill FROM PersonnelSkills GROUP BY emp_id This solution looks at first like a violation of the rule in SQL .
TÀI LIỆU LIÊN QUAN
JOE CELKO’S SQL PUZZLES & ANSWERS Second Edition
Joe Celko s SQL for Smarties - Advanced SQL Programming P84
Joe Celko s SQL for Smarties - Advanced SQL Programming P1
Joe Celko s SQL for Smarties - Advanced SQL Programming P2
Joe Celko s SQL for Smarties - Advanced SQL Programming P3
Joe Celko s SQL for Smarties - Advanced SQL Programming P4
Joe Celko s SQL for Smarties - Advanced SQL Programming P5
Joe Celko s SQL for Smarties - Advanced SQL Programming P6
Joe Celko s SQL for Smarties - Advanced SQL Programming P7
Joe Celko s SQL for Smarties - Advanced SQL Programming P8
Đã 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.