Closed Thread
Results 1 to 3 of 3

Thread: Creating Tables

  1. #1
    leon Guest

    Creating Tables

    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!

  2. CODECALL Circuit advertisement

     
  3. #2
    Lop's Avatar
    Lop
    Lop is offline Speaks fluent binary
    Join Date
    May 2006
    Posts
    1,178
    Rep Power
    30
    Do you have phpMyAdmin? It is the easiest way to manage a mysql db across the internet.

  4. #3
    NeedHelp Guest
    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

Closed Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. One Row VS. Other Tables
    By BASHERS33 in forum Database & Database Programming
    Replies: 4
    Last Post: 03-28-2010, 03:28 PM
  2. Smarty - Part 3 - Creating tables and lists
    By Orjan in forum PHP Tutorials
    Replies: 2
    Last Post: 10-18-2009, 03:46 PM
  3. Better to use CSS or Tables?
    By Void in forum HTML Programming
    Replies: 10
    Last Post: 10-17-2006, 09:44 AM
  4. Still using tables?
    By ShortCircuit in forum HTML Programming
    Replies: 11
    Last Post: 09-30-2006, 06:45 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts