在sql中选择不同的行

时间:2016-04-27 10:34:59

标签: mysql sql

我有一张表格如下:

id     fs_nature       Class   f_head
---------------------------------------
1      Monthly           II     1
2      Monthly           II     2
3      Quarterly         II     1
4      Quarterly         II     2
5      Quarterly         II     3

使用sql查询我想选择像

这样的行
Monthly     II
Quarterly   II     

是否可能。如果是,那么请显示查询,因为我很困惑。

3 个答案:

答案 0 :(得分:2)

试试这样:

SELECT DISTINCT fs_nature, Class FROM table

或事件更快:

.topbar {
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 200px;
    background: pink;
    z-index: 5;
    height: <static_dimension>;
}

答案 1 :(得分:2)

您的查询将是这样的:

SELECT DISTINCT fs_nature,Class FROM table_name;

答案 2 :(得分:0)

SELECT distinct(fs_nature),类FROM table_name;