假设我们连续有多列
我们需要选择一个特定的列和一个特定的行 我们需要按Date Desc
进行订购我们如何实现此查询
Select column, * from table where column like’%abc’
它应该按日期顺序排序
在该列中,应仅是特定行“ abc”
从表中选择列*,其中“%abc”列按日期顺序排序
答案 0 :(得分:0)
如果查询中包含值“ abc”,则该查询将获取该特定列。
Select yourspecificcolumn from yourtable where yourspecificcolumn like '%abc%' order by date desc