Results 1 to 6 of 6

Thread: mysql help?

  1. #1

    Thread Starter
    Frenzied Member
    Join Date
    Jul 2004
    Posts
    1,202

    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

  2. #2
    PowerPoster kfcSmitty's Avatar
    Join Date
    May 2005
    Posts
    2,248

    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?

  3. #3

    Thread Starter
    Frenzied Member
    Join Date
    Jul 2004
    Posts
    1,202

    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

  4. #4
    PowerPoster kfcSmitty's Avatar
    Join Date
    May 2005
    Posts
    2,248

    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);

  5. #5

    Thread Starter
    Frenzied Member
    Join Date
    Jul 2004
    Posts
    1,202

    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

  6. #6
    New Member
    Join Date
    Dec 2008
    Posts
    9

    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
  •  



Click Here to Expand Forum to Full Width