Archive for July, 2017

Marvel DC

July 5th, 2017, posted in COMiCS, MARVEL
Share

Marvel DC,Marvel DC Comics,Marvel Comics,DC Comics,Justice League,Wonder Women,Superman,Batman,Iron Man,sipderman

Share

I Start To Forget You

July 3rd, 2017, posted in LoVE, Scarface'S DIARY
Share

love you,someone,thinking about you,miss you,missing you,progress i made,your name

Share

Find A String In Database

July 1st, 2017, posted in Oracle Queries
Share

I’ve tried using this statement below to find an appropriate column based on what I think it should be named but it returned no results :

SELECT * from dba_objects WHERE
object_name like '%DTN%'

A column isn't an object. If you mean that you expect the column name to be like '%DTN%', the query you want is:

SELECT owner, table_name, column_name FROM all_tab_columns WHERE column_name LIKE '%DTN%';
Share