Is it possible, in the same sql-script, to create a database and it´s tables? It should be ofcourse but I cant find the right syntax anywhere. It should be something like...
GO
create database KD211SYS3U1;
GO
--SKAPA TABELLER--
create table KD211SYS3U1.dbo.tblLakare(
fltDoktorID int IDENTITY(1,1) primary key not null,
fltFnamn char(20),
fltEnamn char(20)
)
newbie
dav
GO
create database KD211SYS3U1;
GO
--SKAPA TABELLER--
create table KD211SYS3U1.dbo.tblLakare(
fltDoktorID int IDENTITY(1,1) primary key not null,
fltFnamn char(20),
fltEnamn char(20)
)
newbie
dav