2018年3月24日

Visual C# 访问 SQLserver 数据库

摘要: 1 在数据库建库建表:http://www.cnblogs.com/hbuwyg/p/8641870.html 2 修改程序里面的 数据库连接字符串 3 下载并运行源代码:https://github.com/HBU/DataBase/tree/master/CsharpDB/CRUD 阅读全文

posted @ 2018-03-24 22:47 HBU_DAVID 阅读(259) 评论(0) 推荐(0) 编辑

数据库系统概论 第三章 课后作业

摘要: 1 ----第3大题 2 3 --建立库 4 create database SPJbase 5 use SPJbase 6 7 8 --建立表 9 create table s --建立s表 10 ( 11 sno varchar(5) primary key, 12 sname varchar(10) not n... 阅读全文

posted @ 2018-03-24 22:42 HBU_DAVID 阅读(1194) 评论(0) 推荐(0) 编辑

数据库系统概论 第三章 建表&插入SQL语句

摘要: 1 --Edit by David @ HeBei University 2018 2 3 USE MrDavid 4 GO 5 6 DROP TABLE IF EXISTS SC 7 DROP TABLE IF EXISTS Student 8 DROP TABLE IF EXISTS Course 9 10 CREATE TABLE Student ... 阅读全文

posted @ 2018-03-24 22:38 HBU_DAVID 阅读(965) 评论(0) 推荐(0) 编辑

导航