Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

HELLO WORLD

一、示例

USE sql_store;

SELECT *
FROM customers
-- WHERE customer_id = 1
ORDER BY first_name

二、知识点

  • USE使用 DB
  • SELECT选择 Column
  • FROM选择 Table
  • WHERE筛选
  • ORDER BY排序
  • --注释