1.
Kā domā, kādi būs vaicājuma rezultāti?
create table #temp (i int);2.
insert into #temp (i)values (1);
exec ('
select * from #temp
insert into #temp (i)values (2)
create table #temp (i int)
insert into #temp (i)values (3)
select * from #temp
');
select * from #temp;
drop table #temp;
Temporālās tabulas ir vienas sesijas ietvaros. Vai liekas, ka šādu vaicājumu varēs izpildīt divi dažādi lietotāji (jebšu divas dažādas konekcijas)?
create table #temp
(
i int CONSTRAINT ck_ParbauduVertibu CHECK (i>5)
)
Nav komentāru:
Ierakstīt komentāru