Below is the query for searching only tables. SELECT c.name AS ‘ColumnName’ ,t.name AS ‘TableName’ FROM sys.columns c JOIN sys.tables t ON c.object_id = t.object_id WHERE c.name LIKE ‘%columnName%’ ORDER BY TableName ,ColumnName; If you want to search both tables and views – replace Sys.Columns toINFORMATION_SCHEMA.COLUMNS in the above query -Hussain Patel
SQL
Git
How To
Follow the below steps: git checkout develop git pull git checkout <your-branch-name> git merge develop The above steps will merge the changes from develop into your branch and probably create a new commit, with a comment making it clear that it’s a merge. There are other ways do to update the local branch, i would say […]