select column names from different table sql code example
Example 1: how to get all table names in sql query
BY LOVE SINGH
SELECT TABLE_NAME
FROM INFORMATION_SCHEMA.TABLES
WHERE TABLE_TYPE = 'BASE TABLE' AND TABLE_CATALOG='YOUR_Database_name'
Example 2: update multiple columns in sql
UPDATE table-name SET column-name = value, column-name = value WHERE condition = value