Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
DECLARE tab_cursor CURSOR FOR
SELECT name AS tabelle FROM dbo.sysobjects WHERE xtype = 'U';
OPEN tab_cursor;
FETCH NEXT FROM tab_cursor;
WHILE @@FETCH_STATUS = 0
BEGIN
// Hier das update
FETCH NEXT FROM tab_cursor
END;
CLOSE tab_cursor;
DEALLOCATE tab_cursor;
select t.name,
c.*
from sys.tables t inner join sys.columns c
on t.object_id = c.object_id
and t.type='U'