Showing posts with label Find Columns Name in the MSSQL DataBase. Show all posts
Showing posts with label Find Columns Name in the MSSQL DataBase. Show all posts

Wednesday 6 January 2016

Find Columns Name in the MSSQL DataBase

Hello Fellas,

Today I'm sharing the learning to how to find the column whose table name is unknown to us.

here is the query,


select * from INFORMATION_SCHEMA.COLUMNS where COLUMN_NAME like '%TurnAroundTime%' order by TABLE_NAME

Thank You :)

A Guide to Installing Oracle HR Schema on an Existing Docker Container

  Hi Reader, Today I want to share my learning on how to install Oracle HR schema on a existing docker container. Step 1: Download the verif...