Monday, 3 July 2017

Get common table name between two database


select t1.name from dbname1.sys.tables T1 JOIN
dbname2.SYS.TABLES T2 ON
T1.NAME = T2.NAME
order by t1.name

No comments:

Post a Comment

React Hooks - custom Hook

  v CustomHook Ø React allows us to create our own hook which is known as custom hook. Example – 1 localStorage Demo Step-1 Create ...