zoukankan      html  css  js  c++  java
  • SQL语句创建表和数据库

     

    删除数据库,SQL Server将数据库的清单存放在master系统数据库的sysdatabases表中,只需要查看该表是否存在于该数据库中就可以了,语句如下:

    1 use master -- 设置当前数据库为master,以便访问sysdatabases表
    2 go 
    3 if exists (select * from sysdatabases where name='practice')
    4 drop database practice

    创建表的SQL语句如下:

     1 use practice
     2 go 
     3 if exists (select * from sysobjects where name='practice')
     4 drop table Store_Information
     5 create table Store_Information
     6 (
     7   storeID int identity(1,1) primary key,--列属性"identity(起始值,递增量)"
     8   store_Name varchar not null,
     9   store_Money decimal null,
    10   store_Date date not null,
    11 )
    勤劳一日,便得一夜安眠;勤劳一生,便得幸福长眠。
  • 相关阅读:
    初识jQuery(2)
    初识jQuery(1)
    document和javaScript内置对象
    location
    history
    window对象
    注释、语法约定、函数和作用域
    运算符和typeof
    string
    数据恢复
  • 原文地址:https://www.cnblogs.com/zhaomengmeng/p/4171040.html
Copyright © 2011-2022 走看看