Why we need to check table columns in microsoft sql server?
Please answer me
Answers
Answered by
0
Answer:
that's the only way to know the answer
Explanation:
You can obtain this information and much, much more by querying the Information Schema views.
This sample query:
SELECT *
FROM INFORMATION_SCHEMA.COLUMNS
WHERE TABLE_NAME = N'Customers'
Similar questions