What does this sentence mean? If exists (select * From DBO. sysobjects where id = object_id (n' [DBO]. [perper

Source: Internet
Author: User
What does this sentence mean? If exists (select * From DBO. sysobjects where id = object_id (n' [DBO]. [perper

Excuse me: If exists (select * From DBO. sysobjects where id = object_id (n' [DBO]. [perpersondata] ') and objectproperty (ID, n'isusertable') = 1)
What does object_id (n' [DBO]. [perpersondata] ') mean? Which object_id function? Which n?
What does the objectproperty function in objectproperty (ID, N 'isusertable') = 1 mean? What does that mean by = 1?

Object_id: returns the ID of the database object. N is an explicit conversion of non-Unicode characters into Unicode characters, which comes from the national (UNICODE) data type in the SQL-92 standard for expansion and standardization, where it is not needed, write object_id (perpersondata ).

Objectproperty: returns information about objects in the current database. 1 Table "true ". You can also write objectproperty (ID, susertable) = 1.

The entire statement indicates whether a table such as perpersondata exists in the database.

The entire statement can be abbreviated:
If exists (select * From sysobjects where objectproperty (object_id ('perpersondata'), 'istable') = 1)

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.