עמודות בMYSQL

shlomi2122

New member
עמודות בMYSQL

אני משתמש בתוכנה MySQL Control Center לניהול טבלאות בMYSQL. בניתי טבלאה כזאת: x | y רציתי לדעת האם ניתן להזיז את מיקום העמודה y לפני x בצורה כזאת (בעזרת התוכנה): y | x במידה ולא קיימת אופציה כזאת בתוכנה הנ"ל האם ניתן לעשות זאת באמצעות קוד? תודה
 

itaym02

New member
not what you wanted exactly

create table temp as select y,x from old_table drop old_table rename temp to old_table (here use google for the exact syntax - or use you admin program by the way it shouldn't bother you what is the order of columns in the table, it must not affect you application
 
למעלה