嗨,我需要知道在SQL中可以检查日期是未来并显示未来日期
如果我可以知道如何工作?
答案 0 :(得分:0)
您应该使用distinct
,如下所示
select distinct name
from tablename
因为distinct
会从返回的行中删除重复项。
答案 1 :(得分:0)
答案 2 :(得分:0)
您可以使用distinct关键字
select distinct name from tablename;
distinct关键字用于仅显示列中的唯一(不同)条目,因此所有重复条目都不会显示在查询输出中。detailed tutorial