Collections:
"sys.tables" - Getting a List of All Tables in SQL Server
How To Get a List of All Tables with "sys.tables" View in SQL Server?
✍: FYIcenter.com
If you want to see the table you have just created, you can use the "sys.tables" system view to get a list of all tables in the current database. The tutorial script gives you a good example:
SELECT name, type_desc, create_date FROM sys.tables GO name type_desc create_date tip USER_TABLE 2007-05-19 23:05:43.700
The output shows that there is only one table in the current database.
⇒ "sys.columns" - Getting a List of Columns in a Table in SQL Server
⇐ CREATE TABLE - Creating New Tables in SQL Server
2018-03-29, 4275🔥, 1💬
Popular Posts:
What Is an Oracle Instance in Oracle? Every running Oracle database is associated with an Oracle ins...
Where to find reference information and tutorials on MySQL database functions? I want to know how to...
How to download and install the scaled-down database AdventureWorksLT in SQL Server? If you want to ...
How To Connect to a MySQL Server with a Port Number in MySQL? If you want to connect a MySQL server ...
What Are Date and Time Functions in MySQL? MySQL offers a number of functions for date and time valu...