Jump to content

[SOLVED] MYSQL Help


nathanmaxsonadil

Recommended Posts

How do you mean?

 

If you want to insert a new row and add data to a couple of the columns you can use INSERT along with listing the columns you want to add data to, eg:

INSERT INTO tbl_name (`col1`, `col2`) VALUES ('col1_value', 'col2_value');

 

or if you want to add/update data to a column within an existing row you'd use UPDATE, eg:

UPDATE tbl_name SET `col_name` = 'some_value' WHERE column_id = 'some_column_id_value'

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.