Can someone post a link with detailed info on how to go about creating individual tables in any certain db? I installed a cms with a plug in but doing so the plug in gives an error saying it is missing certain table names. Thanks!
Do you have phpMyAdmin? It is the easiest way to manage a mysql db across the internet.
Here is what you need to type:
CREATE TABLE employee_data
(
emp_id int unsigned not null auto_increment primary key,
f_name varchar(20),
l_name varchar(20),
title varchar(30),
age int,
yos int,
salary int,
perks int,
email varchar(60)
);
All of the data will change though. For more info click here
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks