How to select Distinct columns from the table, table having
20 columns and i want all coulmns
Answers were Sorted based on User's Feedback
Answer / ram
select * from tablename
select distinct * from tablename
above two select statements give same output with all
column name and also data
if we want only column name & its details(datatype,sizre)
use
select * from
information_schema.columns where table_name='EMP1'
(or)
select distinct * from
information_schema.columns where table_name='EMP1'
(Here Table name mustbe in single quotes and also capital
letters only)
here also both select statements output is same
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / saleem
select *from tablename gives all distinct columns in the
table
| Is This Answer Correct ? | 1 Yes | 2 No |
Answer / monal
To select distinct columns you can mention them in the SQL
query and to select all columns you can use select * from
information_schema.columns
| Is This Answer Correct ? | 2 Yes | 8 No |
What is Peer to peer Replication?
1 Answers CarrizalSoft Technologies, HCL,
What are filegroups in sql server?
How to retrieve data from log files in SQL SERVER ?????
What is a with(nolock)?
What do you understand by mirroring?
How to update values in a table with update statements in ms sql server?
Explain the dirty pages?
define and explain the differences between clustered and non-clustered indexes.
What is database architecture? : SQL Server Architecture
Can an automatic recovery be initiated by a user?
Why we are using the sql language?. What is the purpose of using this?
explain different types of jions with examples briefly?
2 Answers Accenture, Excellence, Zensar,
Oracle (3259)
SQL Server (4518)
MS Access (429)
MySQL (1402)
Postgre (483)
Sybase (267)
DB Architecture (141)
DB Administration (291)
DB Development (113)
SQL PLSQL (3330)
MongoDB (502)
IBM Informix (50)
Neo4j (82)
InfluxDB (0)
Apache CouchDB (44)
Firebird (5)
Database Management (1411)
Databases AllOther (288)