您好,欢迎来到微智科技网。
搜索
您的当前位置:首页SQL server 从创建数据库到查询数据的简单操作

SQL server 从创建数据库到查询数据的简单操作

来源:微智科技网

 

 

1.创建数据库

--创建数据库
create database db_Product
go

--使用数据库
use db_Product
go

 

2、创建表

--创建商品类型表
create table GoodsType
(
    IO int primary key identity(1,1),
    typename varchar(10)not null
)
go
--创建商品信息表
create table Goods
(
    Id int primary key identity(1,1),
    Typeld int foreign key references GoodsType(IO),
    Name varchar(20)not null,
    Price decimal(10,2) not null,
    ProductionDate datetime not null,
    Amount int not null
)
go

3、插入数据

insert into GoodsType values
('家电'),
('电子'),
('食品'),
('生活用品')

insert into Goods values 
('1','冰箱',3344,'2017-06-03',100),
('1','电视',1777,'2016-06-03',100),
('1','微波炉',333,'2017-02-26',100),
('2','手机',4500,'2017-05-07',100),
('2','显示器',1777,'2016-12-04',100),
('2','主机',1500,'2017-03-09',100),
('3','老干妈',9,'2017-07-06',100),
('3','爽口榨菜',3.6,'2017-06-08',100)

4、查询

select * from GoodsType
select * from Goods

 

转载于:https://www.cnblogs.com/nongzihong/p/10142032.html

因篇幅问题不能全部显示,请点此查看更多更全内容

Copyright © 2019- 7swz.com 版权所有 赣ICP备2024042798号-8

违法及侵权请联系:TEL:199 18 7713 E-MAIL:2724546146@qq.com

本站由北京市万商天勤律师事务所王兴未律师提供法律服务