码迷,mamicode.com
首页 > 数据库 > 详细

数据库层级设置

时间:2015-05-19 12:09:21      阅读:231      评论:0      收藏:0      [点我收藏+]

标签:

技术分享

技术分享
SET QUOTED_IDENTIFIER ON
GO

CREATE TABLE [dbo].[dt_navigation](
    [id] [int] NOT NULL,
    [nav_type] [nvarchar](50) NULL,
    [name] [nvarchar](50) NULL,
    [title] [nvarchar](100) NULL,
    [sub_title] [nvarchar](100) NULL,
    [link_url] [nvarchar](255) NULL,
    [sort_id] [int] NULL,
    [is_lock] [tinyint] NULL,
    [remark] [nvarchar](max) NULL,
    [parent_id] [int] NULL,
    [class_list] [nvarchar](max) NULL,
    [class_layer] [int] NULL,
    [channel_id] [int] NULL,
    [action_type] [nvarchar](max) NULL,
    [is_sys] [int] NULL
) ON [PRIMARY]

GO
View Code

 

数据库层级设置

标签:

原文地址:http://www.cnblogs.com/sunzhenyong/p/4513788.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!