SQL notes and SQL notes

Source: Internet
Author: User

SQL notes and SQL notes

------- Select * Table by pressing Ctrl + 3.
USE [NB]
GO
/*Object: StoredProcedure [dbo]. [SP_Select] script Date: 05/28/2015 21:46:25*/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
Create Proc [dbo]. [SP_Select]
@ OName varchar (100)
As
Declare @ Str Varchar (1000 ),
@ Dbname varchar (40)
Set @ dbname = db_name ()
Set @ Str = 'select * from' + @ dbname + '. dbo.' + @ OName
Exec (@ Str)

------- Select the table name and configure it to Ctrl + 8 to query all the column names of the table.
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
Create proc [dbo]. [sp_syscolumns]-Exec sp_syscolumns 'eemploye'
@ Object NVARCHAR (1000)
As
/*
Function: obtains the items of all columns of an object (mainly for tables)
Remark: Create By Deam L 2013/4/7
*/
Begin
Set nocount on

Declare @Name NVARCHAR (1000)Select  @Name= Isnull(@Name +',', '')+name From syscolumns Where id=object_id( @Object)Print   @NameSet nocount off

END

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.