Tuesday, April 1, 2014

Get table name and its SCHEMA NAME from database sql server

SELECT Distinct TABLE_NAME,SCHEMA_NAME() FROM information_schema.TABLES

No comments:

Post a Comment

Complete Authentication System in ASP.NET Core using JWT

JWT (JSON Web Token) authentication is widely used for securing APIs in modern applications. In this article, we will build a complete authe...