Submit a query on the SYS.TABLES table to get all of the data about the tables in a specific database. Be sure to specify the database that you are targeting.
USE -- Specify your target database name (without the brackets)
GO
SELECT * FROM SYS.TABLES
GO
Login to rate this answer.
use
sp_help
It displays all the tables created in that database
Login to rate this answer.
To Display list of tables in the database:
SELECT * FROM INFROMATION_SCHEMA.TABLES WHERE TYPE='basetable'
To describe the structure of a particular table
SP_HELP table_name;
Login to rate this answer.