What will be the output of the below

CREATE TABLE [dbo].[tblLocation](
[LocationID] [int] IDENTITY(1,1) NOT NULL,
[Latitude] [varchar](100) NOT NULL,
[Longitude] [varchar](100) NOT NULL)

GO

SELECT COL_NAME(OBJECT_ID('tblLocation'),2) AS COLUMN_NAME ;

GO

DROP TABLE [dbo].[tblLocation]

 Posted by Rajnilari2015 on 10/24/2015 | Category: Sql Server Interview questions | Views: 1816 | Points: 40
Select from following answers:
  1. Latitude
  2. LocationID
  3. Longitude
  4. tblLocation
  5. All Above

Show Correct Answer


Asked In: Many Interviews | Alert Moderator 

Comments or Responses

Login to post response