Skip to content

Latest commit

 

History

History
11 lines (11 loc) · 192 Bytes

MySQL基础语法.md

File metadata and controls

11 lines (11 loc) · 192 Bytes

一、查询语法 1、查询所有列

select * from 表名;

2、查询指定列

  1. 无别名
select 列名1, 列名2 from 表名;
  1. 为表中的列指定别名