我正在尝试在SSMS中编写SqL查询

时间:2019-05-16 12:50:25

标签: sql sql-server tsql

假设我们连续有多列

我们需要选择一个特定的列和一个特定的行 我们需要按Date Desc

进行订购

我们如何实现此查询

Select column, * from table  where column like’%abc’ 

它应该按日期顺序排序

在该列中,应仅是特定行“ abc”

从表中选择列*,其中“%abc”列按日期顺序排序

1 个答案:

答案 0 :(得分:0)

如果查询中包含值“ abc”,则该查询将获取该特定列。

Select yourspecificcolumn from yourtable where yourspecificcolumn like '%abc%' order by  date desc