Jump to content

Repostion a row.


redarrow

Recommended Posts

Advance thank you.

 

I am going over all the mysql i no and i come accros a problam.

 

I forgot how to repostion a row once it set in the database.

 

I am using the mysql command prompt to learn properly.

 


//1 create a database


create database users;

// use the database 

use users;

// create a table

create table members(name varchar (20) not null,
                 address varchar(100) not null,
                 telephone_number int(20) not null,
                id int not null auto_increment primary key);

 

So i got now.

 

name

address

telephone_number

id

 

know the hard bit not found in the mysql manual how to postion the id to the first row?

 

bad example but funny but also hard to work out.

mysql>> alter table users modify id int not null auto_increment primary key postion row 1

 

Dont no gong mad lol.

 

Link to comment
https://forums.phpfreaks.com/topic/57681-repostion-a-row/
Share on other sites

Hi...

 

U actually need to rename each filed

 

See the code as below ...........

 

Changing ID to ID1

 

ALTER TABLE `employee` CHANGE `id` `id1` int not null auto_increment primary key

Changin NAME to ID

ALTER TABLE `employee` CHANGE `name` `id` int not null auto_increment primary key

CHaning ID1 to Name

 

ALTER TABLE `employee` CHANGE `id1` `name` varchar (20) not null,

 

 

 

Like this U need to do ..

 

So that u r data will not lost

 

 

 

Regards

Sushant

Link to comment
https://forums.phpfreaks.com/topic/57681-repostion-a-row/#findComment-287859
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.