You are not logged in.
Dear visitor, welcome to Aqua Computer Forum. If this is your first visit here, please read the Help. It explains how this page works. You must be registered before you can use all the page's features. Please use the registration form, to register here or read more information about the registration process. If you are already registered, please login here.
Quoted from "Amok"
- Kopiere Tablleninhalt aus (a) in Tabelle Rechnung*Monat*
Quoted from "Amok"
- lösche Tabelleninhalt (a)
![]() |
Source code |
1 2 3 4 5 6 |
Create Table NeueTabelle ( [Feld1] [int] NOT NULL, [Feld2] varchar(50) null, [Feld3] ntext null ) |
![]() |
Source code |
1 2 3 |
Insert Into NeueTabelle (Feld1,Feld2,Feld3) (Select Feld1,Feld2,Feld3 from AlteTabelle where Feld2 = 'schlag mich tot') |
![]() |
Source code |
1 |
Delete From AlteTabelle where Feld2 = 'schlag mich tot' |
-