首页 > 数据库技术 > 详细

数据库层级设置

时间:2015-05-19 12:09:13      阅读:222      评论: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
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!