I want to create a view that has distinc records of one of the five columns of the view i want to create. The view only takes data from one table.
Select distinc records from a table column but display all columns
Collapse
X
-
Tags: None
-
Originally posted by JERRYLEGUERI want to create a view that has distinc records of one of the five columns of the view i want to create. The view only takes data from one table.
R u trying to say that u want to create a view with distinct values from a table?
Then try this:
Create View viewname as select distinct * from tablename
Thanks jeen
Comment