Hi..
This is my first time to create table in mysql database. I need the help to solve the mysql database problem. This is my first time to use mysql and I want to create a table called "login"
the command should be like the following:
create table login (
....
please tell me how to create the password field?? the following is sample:
create table login (
user_id int(4) unsigned zerofill not null,
user_pwd "...................................................................."
primary key(user_id)
);
please help me how to create column type of password
thank you..
joseph