Hallo,
bin blutiger Änfänger und hatte bisher so gut wie nichts mit einer SQL-Datenbank gemacht.
Jetzt habe ich folgendes Problem:
ich soll
Mithilfe eines MySQL-Tools folgende Zeile in die Datenbank einfügen:
alter table products add column products_price1 decimal(15,4) not null default 0.0;
alter table products add column products_price2 decimal(15,4) not null default 0.0;
alter table products add column products_price3 decimal(15,4) not null default 0.0;
alter table products add column products_price4 decimal(15,4) not null default 0.0;
alter table products add column products_price5 decimal(15,4) not null default 0.0;
alter table products add column products_price6 decimal(15,4) not null default 0.0;
alter table products add column products_price1_qty int not null default 0;
alter table products add column products_price2_qty int not null default 0;
alter table products add column products_price3_qty int not null default 0;
alter table products add column products_price4_qty int not null default 0;
alter table products add column products_price5_qty int not null default 0;
alter table products add column products_price6_qty int not null default 0;
alter table products add column products_qty_blocks int not null default 1;
Doch ich find in myadmin nur :
[COLOR=red]Neue Tabelle in Datenbank DB188080 erstellen: [/COLOR]
[COLOR=red]Name: [/COLOR]
[COLOR=red]Felder: [/COLOR]
Oder muß ich die ganze Zeile kopieren und als Befehl hier eingeben ?
[COLOR=red]SQL-Befehl(e) in Datenbank DB188080 ausführen[/COLOR]
[COLOR=red]SQL-Befehl hier wieder anzeigen [/COLOR]
[COLOR=red]Abfrage vor Änderungen außerhalb des Fensters schützen[/COLOR]
Wie muß ich das angehen ?
Es wäre schön wenn ich eine Antwort bekommen würde.
Danke im voraus
bin blutiger Änfänger und hatte bisher so gut wie nichts mit einer SQL-Datenbank gemacht.
Jetzt habe ich folgendes Problem:
ich soll
Mithilfe eines MySQL-Tools folgende Zeile in die Datenbank einfügen:
alter table products add column products_price1 decimal(15,4) not null default 0.0;
alter table products add column products_price2 decimal(15,4) not null default 0.0;
alter table products add column products_price3 decimal(15,4) not null default 0.0;
alter table products add column products_price4 decimal(15,4) not null default 0.0;
alter table products add column products_price5 decimal(15,4) not null default 0.0;
alter table products add column products_price6 decimal(15,4) not null default 0.0;
alter table products add column products_price1_qty int not null default 0;
alter table products add column products_price2_qty int not null default 0;
alter table products add column products_price3_qty int not null default 0;
alter table products add column products_price4_qty int not null default 0;
alter table products add column products_price5_qty int not null default 0;
alter table products add column products_price6_qty int not null default 0;
alter table products add column products_qty_blocks int not null default 1;
Doch ich find in myadmin nur :
[COLOR=red]Neue Tabelle in Datenbank DB188080 erstellen: [/COLOR]
[COLOR=red]Name: [/COLOR]
[COLOR=red]Felder: [/COLOR]
Oder muß ich die ganze Zeile kopieren und als Befehl hier eingeben ?
[COLOR=red]SQL-Befehl(e) in Datenbank DB188080 ausführen[/COLOR]
[COLOR=red]SQL-Befehl hier wieder anzeigen [/COLOR]
[COLOR=red]Abfrage vor Änderungen außerhalb des Fensters schützen[/COLOR]
Wie muß ich das angehen ?
Es wäre schön wenn ich eine Antwort bekommen würde.
Danke im voraus
Kommentar