SQL statements for tables and fields in SQL Server databases

Source: Internet
Author: User
Each object (such as constraints, default values, logs, rules, and stored procedures) created in the database corresponds to a row.

Each object (such as constraints, default values, logs, rules, and stored procedures) created in the database corresponds to a row.

1. System Table sysobjects

Each object (such as constraints, default values, logs, rules, and stored procedures) created in the database corresponds to a row.

Reference

2. syscolumns

Returns a row for each column in each table and view, and returns a row for each parameter of the stored procedure in the database.

Reference

Delete a table in a database

Declare dlist cursor
Select name from sysobjects where xtype = 'U'
Open dlist
Declare @ n varchar (4000)
Fetch next from dlist into @ n
While @ fetch_status = 0
Begin
Declare @ es varchar (4000)
Set @ es = 'drop table
Exec (@ es)
Fetch next from dlist into @ n
End
Close dlist
DEALLOCATE dlist

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.