Hello,
How do i insert the field NOTES in to my sql database?
Printable View
Hello,
How do i insert the field NOTES in to my sql database?
You want to add the field NOTES to the table, or you want to insert a value into the NOTES field within a currently existing table?
i want to add Notes to the current table?
What kind of field is notes?
You can add a varchar field to a MySQL database using the below query
Code:ALTER TABLE 'tableName' ADD 'Notes' VARCHAR(255);
ill try it when i get home and let u know if it works.
If that fails you could always use something like PHPMyAdmin or the Database browser that comes with MySQL to do it from a GUI.