惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

大猫的无限游戏
大猫的无限游戏
MyScale Blog
MyScale Blog
雷峰网
雷峰网
量子位
小众软件
小众软件
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 叶小钗
T
Tailwind CSS Blog
月光博客
月光博客
博客园 - 【当耐特】
博客园_首页
罗磊的独立博客
博客园 - 三生石上(FineUI控件)
IT之家
IT之家
爱范儿
爱范儿
阮一峰的网络日志
阮一峰的网络日志
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
WordPress大学
WordPress大学
The Cloudflare Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
S
SegmentFault 最新的问题
人人都是产品经理
人人都是产品经理
V
V2EX
酷 壳 – CoolShell
酷 壳 – CoolShell

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
T-SQL on Microsoft Fabric -Episode 1: T-SQL Basics in Mic...
Lam Bùi · 2026-06-02 · via DEV Community

Lam Bùi

T-SQL on Microsoft Fabric - Episode 1: Mastering Data Retrieval with SELECT, WHERE, and ORDER BY

Learning Goals

In this lesson, you will learn how to:

  • Read data from tables using SELECT
  • Filter rows with WHERE
  • Sort query results with ORDER BY
  • Get familiar with standard T-SQL syntax
  • Practice directly in Microsoft Fabric Warehouse

1. Understanding Database and Schema

In Fabric Warehouse, objects are commonly organized like this:

Warehouse
|
|-- sales
|   |-- Customers
|   |-- Orders
|
|-- hr
|   |-- Employees
|
|-- finance
    |-- Transactions

Enter fullscreen mode Exit fullscreen mode

Schemas help you:

  • Group related tables
  • Manage permissions
  • Organize large systems more effectively

2. Create a Schema

Create a schema for the sales dataset:

CREATE SCHEMA sales;

Enter fullscreen mode Exit fullscreen mode

Check existing schemas:

SELECT *
FROM sys.schemas;

Enter fullscreen mode Exit fullscreen mode

3. Create Tables

Create the Customers table:

CREATE TABLE sales.Customers
(
    CustomerID      INT,
    CustomerName    VARCHAR(100),
    City            VARCHAR(50),
    Country         VARCHAR(50)
);

Enter fullscreen mode Exit fullscreen mode

Create the Orders table:

CREATE TABLE sales.Orders
(
    OrderID         INT,
    CustomerID      INT,
    OrderDate       DATE,
    Amount          DECIMAL(10,2)
);

Enter fullscreen mode Exit fullscreen mode

4. Insert Sample Data

Customers

INSERT INTO sales.Customers
VALUES
(1, 'John Smith', 'New York', 'USA'),
(2, 'Emma Brown', 'Chicago', 'USA'),
(3, 'David Wilson', 'London', 'UK'),
(4, 'Sophia Taylor', 'Manchester', 'UK'),
(5, 'Michael Lee', 'Singapore', 'Singapore');

Enter fullscreen mode Exit fullscreen mode

Orders

INSERT INTO sales.Orders
VALUES
(101, 1, '2026-01-10', 1200.00),
(102, 1, '2026-01-15', 800.00),
(103, 2, '2026-01-20', 2500.00),
(104, 3, '2026-02-01', 500.00),
(105, 5, '2026-02-05', 3200.00);

Enter fullscreen mode Exit fullscreen mode

5. SELECT

Get all columns:

SELECT *
FROM sales.Customers;

Enter fullscreen mode Exit fullscreen mode

Get specific columns:

SELECT CustomerName,
       Country
FROM sales.Customers;

Enter fullscreen mode Exit fullscreen mode

6. Alias

Rename columns in the output:

SELECT CustomerName AS Customer,
       Country AS Nation
FROM sales.Customers;

Enter fullscreen mode Exit fullscreen mode

7. WHERE

Filter rows using conditions.

Customers in the USA:

SELECT *
FROM sales.Customers
WHERE Country = 'USA';

Enter fullscreen mode Exit fullscreen mode

Orders greater than 1000:

SELECT *
FROM sales.Orders
WHERE Amount > 1000;

Enter fullscreen mode Exit fullscreen mode

Orders between 500 and 2000:

SELECT *
FROM sales.Orders
WHERE Amount BETWEEN 500 AND 2000;

Enter fullscreen mode Exit fullscreen mode

Multiple conditions:

SELECT *
FROM sales.Customers
WHERE Country = 'UK'
  AND City = 'London';

Enter fullscreen mode Exit fullscreen mode

Use IN:

SELECT *
FROM sales.Customers
WHERE Country IN ('USA', 'UK');

Enter fullscreen mode Exit fullscreen mode

8. DISTINCT

Return unique values:

SELECT DISTINCT Country
FROM sales.Customers;

Enter fullscreen mode Exit fullscreen mode

9. ORDER BY

Sort query results.

Ascending order:

SELECT *
FROM sales.Orders
ORDER BY Amount;

Enter fullscreen mode Exit fullscreen mode

Descending order:

SELECT *
FROM sales.Orders
ORDER BY Amount DESC;

Enter fullscreen mode Exit fullscreen mode

Sort by multiple columns:

SELECT *
FROM sales.Customers
ORDER BY Country,
         CustomerName;

Enter fullscreen mode Exit fullscreen mode

10. TOP

Return the first N rows.

Top 3 orders:

SELECT TOP 3 *
FROM sales.Orders;

Enter fullscreen mode Exit fullscreen mode

Top 3 highest-value orders:

SELECT TOP 3 *
FROM sales.Orders
ORDER BY Amount DESC;

Enter fullscreen mode Exit fullscreen mode

11. Combining Clauses in a Real Query

Find the top 2 highest orders from customers in the USA:

SELECT TOP 2
       c.CustomerName,
       o.Amount
FROM sales.Customers c
JOIN sales.Orders o
    ON c.CustomerID = o.CustomerID
WHERE c.Country = 'USA'
ORDER BY o.Amount DESC;

Enter fullscreen mode Exit fullscreen mode


References