欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

SQL distinct用法

程序员文章站 2022-06-17 21:55:32
1. distinct用法,原表: 2. SQL语句: SELECT DISTINCT class FROM test_table; 3. 结果: ......

1. distinct用法,原表:

SQL distinct用法

 

 

2. sql语句:

select distinct class
from test_table;

3. 结果:

SQL distinct用法