Hi I have created One view... But I want to see the table details which i used in this view... Can anyone help this.
Hi I have created One view... But I want to see the table details which i used in this view... Can anyone help this.
hello ,
if you r using MYSQl or SQL Server then write this query in brouser
> desc or describe, it will display description about field.
>show tables (it will display list of tables only in MYSQL)
> Select * from tab(it will display list of tables only in Oracles)
Thnaks
Samir 07-07-2007 #3Re: I want to see the table details
if your view contains all the fields of the base table , then the structure of the table and the view will be same.
i can use DESCRIBE to get it.
07-12-2007 #4Junior Member![]()
![]()
- Join Date
- Jul 2007
- Answers
- 1
Re: I want to see the table details
Helo,
If u want to see the details of the table.
Select * from;
Thnx
Saleem 07-12-2007 #5Re: I want to see the table details
dear saleem he is asking for table details (structure) not the data.