当前位置:
代码迷
>>
Oracle开发
>> 这条sql语句如何写? 在线
详细解决方案
这条sql语句如何写? 在线
热度:
318
发布时间:
2016-04-24 08:00:42.0
这条sql语句怎么写? 在线
表test 字段一个id 里面数据1,2,2,3,3,4
我只想要查询出的数据是1,2,3,4怎么写这条语句?
------解决方案--------------------
SQL code
select distinct id from test;
查看全文
相关解决方案