phpbar.de logo

Mailinglisten-Archive

[php] MySQL Tabelle mit PHP Kopieren

[php] MySQL Tabelle mit PHP Kopieren

Thomas Richter php at wwedit.org
Mon Jan 5 22:35:50 CET 2004


Bladeck Daniel wrote:
> Leider habe ich das Problem das mein Textfeld in der Spalte 2 als BLOB Feld
> erkannt wird und nicht als Textfeld. Gibt es eine möglichkeit dieses besser
> zu machen und die Richtigen Werte zu bekommen?

schon mal mit folgender query probiert?

SHOW CREATE TABLE tabellenname;

sollte wohl genau das liefert...

anhand des betreffs vielleicht noch interessanter: 
http://www.mysql.com/doc/en/CREATE_TABLE.html

"As of MySQL 3.23, you can create one table from another by adding a 
SELECT statement at the end of the CREATE TABLE statement:

CREATE TABLE new_tbl SELECT * FROM orig_tbl;

Indexes are not carried over to the new table, and some conversion of 
column types may occur. For example, the AUTO_INCREMENT attribute is not 
preserved, and VARCHAR columns may become CHAR columns."

wichtig unten in den kommentaren:

"Since the "LIKE" Operator doesn't work before version 4.1, you can use 
"CREATE TABLE newtable SELECT * FROM othertable WHERE 1=2", which will 
create the newtable like the othertable, but since 1 never equals 2, 
there are no records in the table that was just created"


gruss


thomas


php::bar PHP Wiki   -   Listenarchive