基本信息
文件名称:ETL开发岗位技术面试题趋势分析.docx
文件大小:43.28 KB
总页数:24 页
更新时间:2025-11-24
总字数:约9.15千字
文档摘要
第PAGE页共NUMPAGES页
ETL开发岗位技术面试题趋势分析
一、SQL查询与优化题(共5题,每题8分,总分40分)
题目1(8分)
背景:某电商公司数据仓库中有三个表,分别是`orders`(订单表)、`order_items`(订单明细表)和`products`(商品表)。表结构如下:
sql
orders(idINT,customer_idINT,order_dateDATE,total_amountDECIMAL(10,2))
order_items(order_idINT,product_idINT,quantityINT,priceD