急求 大学的系、专业名称数据库150分

lonaerd 2006-04-13 12:02:07
靠,我来这里给的分大多都是寻软件和找数据库,希望斑竹不要以为我倒分哦。

大学的系、专业名称数据库,我在网上看到的一些招聘网注册中的专业信息,主要是面向工作人员的,而非目前大学中系和专业的名称,想找个比较规范的,感谢大家!!
...全文
133 10 打赏 收藏 转发到动态 举报
写回复
用AI写文章
10 条回复
切换为时间正序
请发表友善的回复…
发表回复
zwrtv 2006-05-26
  • 打赏
  • 举报
回复
UP
阿_浩 2006-04-13
  • 打赏
  • 举报
回复
这个还是要靠搜索的,没有现成的吧
italybread 2006-04-13
  • 打赏
  • 举报
回复
这个每个学校都不一样啊

也有可能相同的课程叫法不一样啊

一些特殊的学校,他们的专业也都不太相同的

你想要这个东西做什么,目的写清楚,找到或找到相似的数据库的可能会更大。
goodstuday 2006-04-13
  • 打赏
  • 举报
回复
这个应该比较难找,帮顶
lonaerd 2006-04-13
  • 打赏
  • 举报
回复
楼上,你给我看这个干什么?我需要的是数据啊
zwrtv 2006-04-13
  • 打赏
  • 举报
回复
收藏
www_7di_net 2006-04-13
  • 打赏
  • 举报
回复
你测试一下试试,如果不行你用一下这个

IF EXISTS (SELECT name FROM master.dbo.sysdatabases WHERE name = N'Student')
DROP DATABASE [Student]
GO

CREATE DATABASE [Student] ON (NAME = N'Student_Data', FILENAME = N'C:\Program Files\Microsoft SQL Server\MSSQL\Data\Student_Data.MDF' , SIZE = 1, FILEGROWTH = 10%) LOG ON (NAME = N'Student_Log', FILENAME = N'C:\Program Files\Microsoft SQL Server\MSSQL\Data\Student_Log.LDF' , SIZE = 1, FILEGROWTH = 10%)
COLLATE Chinese_PRC_CI_AS
GO

exec sp_dboption N'Student', N'autoclose', N'false'
GO

exec sp_dboption N'Student', N'bulkcopy', N'false'
GO

exec sp_dboption N'Student', N'trunc. log', N'false'
GO

exec sp_dboption N'Student', N'torn page detection', N'true'
GO

exec sp_dboption N'Student', N'read only', N'false'
GO

exec sp_dboption N'Student', N'dbo use', N'false'
GO

exec sp_dboption N'Student', N'single', N'false'
GO

exec sp_dboption N'Student', N'autoshrink', N'false'
GO

exec sp_dboption N'Student', N'ANSI null default', N'false'
GO

exec sp_dboption N'Student', N'recursive triggers', N'false'
GO

exec sp_dboption N'Student', N'ANSI nulls', N'false'
GO

exec sp_dboption N'Student', N'concat null yields null', N'false'
GO

exec sp_dboption N'Student', N'cursor close on commit', N'false'
GO

exec sp_dboption N'Student', N'default to local cursor', N'false'
GO

exec sp_dboption N'Student', N'quoted identifier', N'false'
GO

exec sp_dboption N'Student', N'ANSI warnings', N'false'
GO

exec sp_dboption N'Student', N'auto create statistics', N'true'
GO

exec sp_dboption N'Student', N'auto update statistics', N'true'
GO

use [Student]
GO

if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[S_Course]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table [dbo].[S_Course]
GO

if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[S_Cs]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table [dbo].[S_Cs]
GO

if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[S_Department]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table [dbo].[S_Department]
GO

if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[S_Grade]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table [dbo].[S_Grade]
GO

if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[S_User]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table [dbo].[S_User]
GO

CREATE TABLE [dbo].[S_Course] (
[Id] [int] IDENTITY (1, 1) NOT NULL ,
[Name] [varchar] (50) COLLATE Chinese_PRC_CI_AS NULL
) ON [PRIMARY]
GO

CREATE TABLE [dbo].[S_Cs] (
[Id] [int] IDENTITY (1, 1) NOT NULL ,
[Cid] [int] NULL ,
[Cname] [varchar] (50) COLLATE Chinese_PRC_CI_AS NULL ,
[Sid] [int] NULL ,
[Sname] [varchar] (50) COLLATE Chinese_PRC_CI_AS NULL ,
[Did] [int] NULL ,
[Gid] [int] NULL ,
[intYear] [int] NULL ,
[AddTime] [datetime] NULL ,
[Score] [int] NULL
) ON [PRIMARY]
GO

CREATE TABLE [dbo].[S_Department] (
[Id] [int] IDENTITY (1, 1) NOT NULL ,
[Name] [varchar] (50) COLLATE Chinese_PRC_CI_AS NULL
) ON [PRIMARY]
GO

CREATE TABLE [dbo].[S_Grade] (
[Id] [int] IDENTITY (1, 1) NOT NULL ,
[Name] [varchar] (50) COLLATE Chinese_PRC_CI_AS NULL ,
[Did] [int] NULL ,
[Courses] [varchar] (50) COLLATE Chinese_PRC_CI_AS NULL
) ON [PRIMARY]
GO

CREATE TABLE [dbo].[S_User] (
[Id] [int] IDENTITY (1, 1) NOT NULL ,
[Name] [varchar] (50) COLLATE Chinese_PRC_CI_AS NOT NULL ,
[UserNa] [varchar] (20) COLLATE Chinese_PRC_CI_AS NULL ,
[UserPa] [varchar] (50) COLLATE Chinese_PRC_CI_AS NULL ,
[Snum] [varchar] (50) COLLATE Chinese_PRC_CI_AS NULL ,
[Did] [int] NULL ,
[Gid] [int] NULL ,
[Iid] [int] NOT NULL
) ON [PRIMARY]
GO

www_7di_net 2006-04-13
  • 打赏
  • 举报
回复
我有MSSQL的,SQL脚本如下

/****** Object: Database Student Script Date: 2006-4-13 13:45:34 ******/
IF EXISTS (SELECT name FROM master.dbo.sysdatabases WHERE name = N'Student')
DROP DATABASE [Student]
GO

CREATE DATABASE [Student] ON (NAME = N'Student_Data', FILENAME = N'C:\Program Files\Microsoft SQL Server\MSSQL\data\Student_Data.MDF' , SIZE = 1, FILEGROWTH = 10%) LOG ON (NAME = N'Student_Log', FILENAME = N'C:\Program Files\Microsoft SQL Server\MSSQL\data\Student_Log.LDF' , SIZE = 1, FILEGROWTH = 10%)
COLLATE Chinese_PRC_CI_AS
GO

exec sp_dboption N'Student', N'autoclose', N'false'
GO

exec sp_dboption N'Student', N'bulkcopy', N'false'
GO

exec sp_dboption N'Student', N'trunc. log', N'false'
GO

exec sp_dboption N'Student', N'torn page detection', N'true'
GO

exec sp_dboption N'Student', N'read only', N'false'
GO

exec sp_dboption N'Student', N'dbo use', N'false'
GO

exec sp_dboption N'Student', N'single', N'false'
GO

exec sp_dboption N'Student', N'autoshrink', N'false'
GO

exec sp_dboption N'Student', N'ANSI null default', N'false'
GO

exec sp_dboption N'Student', N'recursive triggers', N'false'
GO

exec sp_dboption N'Student', N'ANSI nulls', N'false'
GO

exec sp_dboption N'Student', N'concat null yields null', N'false'
GO

exec sp_dboption N'Student', N'cursor close on commit', N'false'
GO

exec sp_dboption N'Student', N'default to local cursor', N'false'
GO

exec sp_dboption N'Student', N'quoted identifier', N'false'
GO

exec sp_dboption N'Student', N'ANSI warnings', N'false'
GO

exec sp_dboption N'Student', N'auto create statistics', N'true'
GO

exec sp_dboption N'Student', N'auto update statistics', N'true'
GO

use [Student]
GO

李睿_Lee 2006-04-13
  • 打赏
  • 举报
回复
找个人才网,然后拿用不就行了。
subasan 2006-04-13
  • 打赏
  • 举报
回复
同意楼上的。。我收集了一些数据库。。没有大学专业的。。
自己整理工作量应该不是很大。

2,099

社区成员

发帖
与我相关
我的任务
社区描述
Web 开发 非技术区
社区管理员
  • 非技术区社区
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧