使用SQL2000数据库是用MASTER?还是另外建立1个?
使用SQL2000数据库是用MASTER?还是另外建立1个?以下是网上说的,
use master -- 设置当前数据库为master,以便访问sysdatabases表
go
if exists(select * from sysdatabases where name='stuDB')
drop database stuDB
go
use StuDBgo
if exists(select * from sysobjects where name='stuMarks')
drop table stuMarks
create table stuMarks( ExamNo int identity(1,1) primary key, stuNo char(6) not null, writtenExam int not null, LabExam int not null)
go
如果,我VFP 用SQL2000数据库的话,用VFP建立数据库和建立表格?是不是也要用这个步骤做的?
还是先在企业管理器操作,建立需要的数据库?
if exists(select * from sysobjects where name='stuMarks')
drop table stuMarks
的意思,是存在,就删除,然后再建立?用VFP建立的话?也要先查询是否存在?然后在建立?