ylbtech-dbs:apple-notes

-- =============================================
-- apple_备忘录
-- auhtor:Yuanbo
-- 8:54 2016/8/22
-- =============================================

1.A,数据库关系图(Database Diagram) 返回顶部
1.B,数据库设计脚本(Database Design Script)返回顶部

1.B.1, 第一版本

-- =============================================
-- apple_备忘录
-- auhtor:Yuanbo
-- 8:54 2016/8/22
-- =============================================
USE master
GO -- Drop the database if it already exists
IF EXISTS (
SELECT name
FROM sys.databases
WHERE name = N'AppleNotes'
)
DROP DATABASE AppleNotes
GO CREATE DATABASE AppleNotes
GO
use AppleNotes
go
-- =============================================
-- 文件夹
-- auhtor:Yuanbo
-- 规则:用户默认有一个“Notes",不许修改,新添加可以删除
-- 新建文件夹删除:
-- 1、删除文件夹和记录;
-- 2、仅删除文件夹,如果该文件夹存在记录,则转移到“Notes”下,文件夹转移。
-- 文件夹顺序:备忘录、[自定义文件夹]、最新删除
-- 8:54 2016/8/22
-- =============================================
create table Folder
(
folderId uniqueidentifier primary key, --编号【UI、PK】
name varchar(200) --名称
)
go
-- =============================================
-- 备忘录
-- auhtor:Yuanbo
-- 8:54 2016/8/22
-- =============================================
create table Note
(
noteId uniqueidentifier primary key, --编号【UI、PK】
content varchar(2000), --正文
additionalText varchar(200), --附加文本
pubdate datetime, --更新日期(创建日期/最后一次修改日期)
flagDel bit, --是否删除:0=未删除;1=已删除
folderId uniqueidentifier references Folder(folderId) --文件ID【UI、FK】
)

1.B.2,

1.C,功能实现代码(Function Implementation Code)返回顶部
作者:ylbtech
出处:http://ylbtech.cnblogs.com/
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。

dbs:apple-notes的更多相关文章

  1. Unity3D Optimizing Graphics Performance for iOS

    原地址:http://blog.sina.com.cn/s/blog_72b936d801013ptr.html icense Comparisons http://unity3d.com/unity ...

  2. iOS Hardware Guide

    来自U3D文档 Hardware models The following list summarizes iOS hardware available in devices of various g ...

  3. aravel 之父 Taylor Otwell :我是如何工作的

    知名 PHP Web 开发框架 Laravel 之父 Taylor Otwell 发文描述了自己的日常工作状态:全职做 Laravel ,朝八晚五,使用 Sublime Text 3 写代码,终端使用 ...

  4. mac常用快捷键,Mac文件重命名快捷键,Mac OS快速访问系统根目录, MacOS 10.11重要数据的存储位置大全

    command+r,相当于F5,刷新页面 command+F5,启动voiceover command+q 关闭当前程序 在Finder中command+/ 打开底部状态栏,可以查看剩余磁盘空间大小 ...

  5. iOS SDK Release Notes for iOS 9 iOS9 SDK 版本更新说明

    Important: This is a preliminary document for an API or technology in development. Apple is supplyin ...

  6. http://www.apple.com/customer-letter/

    Typora Writingshtml, body {overflow-x: initial !important;}html { font-size: 14px; } body { margin: ...

  7. 05 Go 1.5 Release Notes

    Go 1.5 Release Notes Introduction to Go 1.5 Changes to the language Map literals The Implementation ...

  8. 网络电话pjsip Getting Started: Building for Apple iPhone, iPad and iPod Touch

    Getting Started: Building for Apple iPhone, iPad and iPod Touch ¶ Getting Started Preparation Get th ...

  9. iOS 9的新的改变 iOS SDK Release Notes for iOS 9 说了些改变

    iOS 9的新的改变 iOS SDK Release Notes for iOS 9 说了些改变   看了下还算能理解!!!有兴趣可以看看哈!!!不喜勿喷!!后面的对于废除的方法什么有用感觉!!!   ...

  10. 转换到 StoryBoard 的公布说明(Converting to Storyboards Release Notes)

    转换到 StoryBoard 的公布说明(Converting to Storyboards Release Notes) 太阳火神的漂亮人生 (http://blog.csdn.net/opengl ...

随机推荐

  1. C++@命名空间(转)

    转自http://hi.baidu.com/rainysky_2006/blog/item/a490e01fc3de7964f724e4d1.html 本讲基本要求 * 掌握:命名空间的作用及定义:如 ...

  2. [hdu 4416]Good Article Good sentence

    最近几天一直在做有关后缀自动机的题目 感觉似乎对后缀自动机越来越了解了呢!喵~ 这题还是让我受益颇多的,首先搞一个后缀自动机是妥妥的了 可是搞完之后呢? 我们来观察 step 这个变量,每个节点的 s ...

  3. Lua快速入门

    -- 两个横线开始单行的注释 --[[ 加上两个[和]表示 多行的注释. --]] ---------------------------------------------------- -- 1. ...

  4. php会话(session)生命周期概念介绍及设置更改和回收

    http://www.169it.com/article/8429580816135935852.html https://my.oschina.net/jiec/blog/227252  sessi ...

  5. Applied Deep Learning Resources

    Applied Deep Learning Resources A collection of research articles, blog posts, slides and code snipp ...

  6. python程序的调试方法

      [转自:http://blog.csdn.net/luckeryin/article/details/4477233] 本文讨论在没有方便的IDE工具可用的情况下,使用pdb调试python程序 ...

  7. python部分模块的安装

    scrapy http://www.cnblogs.com/txw1958/archive/2012/07/12/scrapy_installation_introduce.html pyHook - ...

  8. WITH SCHEMABINDING

    SCHEMABINDING   选项,防止视图所引用的表在视图未被调整的情况下发生改变的选项.      也就是说,一旦视图被指定了WITH   SCHEMABINDING   选项,那么,在修改用于 ...

  9. Swagger-UI 基于REST的API测试/文档类插件

    现在多数的项目开发中,网站和移动端都需要进行数据交互和对接,这少不了使用REST编写API接口这种场景.例如我目前的工作,移动端交由了另一团队开发,不同开发小组之间就需要以规范和文档作为标准和协作基础 ...

  10. select跳转

    <select onchange="window.open(this.options[this.selectedIndex].value)"><option> ...