Select *
From
(
Select Table_Name,
Column_Name,
Data_Type,
Count(Distinct Data_Type)
Over(Partition By Column_Name)
As
Cnt
From All_Tab_Columns
Where Table_Name Like 'USER_%'
)
Where Cnt >1
Order By Column_Name;
How to get URL of commentator
-
We sometimes get questions about how to get the web address/URL of a
commentator in our blog. Blogger.com has not provided any way to do that.
However, the...
7 years ago
No comments:
Post a Comment