Zum Inhalt springen
View in the app

A better way to browse. Learn more.

Fachinformatiker.de

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

CREATE TABLE Anweisung

Empfohlene Antworten

Veröffentlicht

Servus

Ich wollte in meiner DB eine neue Tabele erzeugen!


CREATE TABLE newspost(id SINGLE PRIMARY KEY, titel TEXT CHAR, inhalt LONGTEXT, grafik TEXT CHAR, autor TEXT CHAR, datum DATE);
[/PHP]

Die ganze DB ist offline also localhost und bei der Zugriffsverwaltung muss ich ja eigentlich bei der Erstellung einer neuen Tabelle auf nichts achten!!!

Aber PHPmyAdmin spuckt immer diesen Fehler aus:

[PHP]
Fehler

SQL-Befehl :

CREATE TABLE newspost(

id DOUBLE PRIMARY KEY ,
titel TEXT CHAR,
inhalt LONGTEXT,
grafik TEXT CHAR,
autor TEXT CHAR,
datum DATE
)

MySQL meldet:


Fehler in der Syntax bei 'CHAR, inhalt LONGTEXT, grafik TEXT CHAR, autor TEXT CHAR, datum ' in Zeile 1.

was mache ich falsch??

meine Syntax ist doch eigentlich richtig!!! oder?

Versuch mal:

CREATE TABLE newspost(

id int auto_increment, PRIMARY KEY(ID),

titel TEXT CHAR,

inhalt LONGTEXT,

grafik TEXT CHAR,

autor TEXT CHAR,

datum DATE

);

Weiß nicht wieso du bei ID nen Double wert willst - macht keinen Sinn aber so sollte es gehn... Eins vielleicht noch. Hab diese Definition für Textfelder so noch net gesehn. Versuchs mal mit Bsp.: inhalt varchar(50) oder blob wenn du mehr brauchst statt diesem TEXT CHAR...

greetz

PS Achte bei dem PRIMARY KEY(ID), darauf das zwischen Key und der Klammer kein LEER ist... hatte da schon oft Probleme

  • Autor

so hat es funktioniert:


CREATE TABLE newspost(

id int auto_increment, PRIMARY KEY(ID),
titel VARCHAR(50),
inhalt VARCHAR(200),
grafik VARCHAR(50),
autor VARCHAR(20),
datum DATE
);
[/PHP]

Thx

Flitz

Archiv

Dieses Thema wurde archiviert und kann nicht mehr beantwortet werden.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.