|
-
Dec 6th, 2008, 10:04 AM
#1
Thread Starter
Frenzied Member
mysql help?
Hello,
How do i insert the field NOTES in to my sql database?
come back and mark your original post as resoved if your problem is fixed
Jamie Garland
-
Dec 6th, 2008, 12:04 PM
#2
Re: mysql help?
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?
-
Dec 6th, 2008, 12:13 PM
#3
Thread Starter
Frenzied Member
Re: mysql help?
i want to add Notes to the current table?
come back and mark your original post as resoved if your problem is fixed
Jamie Garland
-
Dec 6th, 2008, 02:16 PM
#4
Re: mysql help?
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);
-
Dec 6th, 2008, 03:04 PM
#5
Thread Starter
Frenzied Member
Re: mysql help?
ill try it when i get home and let u know if it works.
come back and mark your original post as resoved if your problem is fixed
Jamie Garland
-
Dec 24th, 2008, 12:48 PM
#6
New Member
Re: mysql help?
If that fails you could always use something like PHPMyAdmin or the Database browser that comes with MySQL to do it from a GUI.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|