zoukankan      html  css  js  c++  java
  • 创建表

    USE  [DawnAuthority] GO   SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[tscore](    name varchar(20), subject varchar(20), score int ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO  insert into [dbo].[tScore] (name,subject,score) values('张三','语文',98) insert into [dbo].[tScore] (name,subject,score) values('张三','数学',80) insert into [dbo].[tScore] (name,subject,score) values('张三','英语',90) insert into [dbo].[tScore] (name,subject,score) values('李四','语文',88) insert into [dbo].[tScore] (name,subject,score) values('李四','数学',86) insert into [dbo].[tScore] (name,subject,score) values('李四','英语',88) insert into [dbo].[tScore] (name,subject,score) values('李明','语文',60) insert into [dbo].[tScore] (name,subject,score) values('李明','数学',86) insert into [dbo].[tScore] (name,subject,score) values('李明','英语',88) insert into [dbo].[tScore] (name,subject,score) values('林风','语文',74) insert into [dbo].[tScore] (name,subject,score) values('林风','数学',99) insert into [dbo].[tScore] (name,subject,score) values('林风','英语',59) insert into [dbo].[tScore] (name,subject,score) values('严明','英语',96) /****** Object:  Table [dbo].[Department]    Script Date: 05/11/2015 23:16:23 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO    

  • 相关阅读:
    牢骚与javascript中的this
    Vim 命令整理
    跟我一起写 Makefile
    Scikit-Learn模块学习笔记——数据预处理模块preprocessing
    Scikit-Learn模块学习笔记——数据集模块datasets
    Markdown 完全指南
    Shell命令行操作
    init_ir_技术实现篇
    ch2 创建和销毁对象
    ch6 影响 MySQLServer 性能的相关因素
  • 原文地址:https://www.cnblogs.com/Look_Sun/p/4494031.html
Copyright © 2011-2022 走看看