+ Reply to Thread
Results 1 to 3 of 3

Thread: Creating Tables

  1. #1
    Newbie leon is an unknown quantity at this point
    Join Date
    May 2006
    Posts
    6

    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. #2
    Lop
    Lop is offline
    Speaks fluent binary Lop has a spectacular aura about Lop has a spectacular aura about Lop's Avatar
    Join Date
    May 2006
    Posts
    1,179
    Do you have phpMyAdmin? It is the easiest way to manage a mysql db across the internet.
    Lop

  3. #3
    Programming God NeedHelp is on a distinguished road
    Join Date
    May 2006
    Posts
    526
    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
    I Need Help

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

     

Similar Threads

  1. Creating a Clock
    By AfTriX in forum VB Tutorials
    Replies: 1
    Last Post: 05-08-2009, 10:33 AM
  2. [Added]Do not drop tables on uninstall
    By rolandd in forum ionFiles
    Replies: 10
    Last Post: 08-12-2007, 11:13 AM
  3. Creating an analog clock with ActionScript
    By AfTriX in forum Tutorials
    Replies: 2
    Last Post: 01-07-2007, 02:19 AM
  4. Better to use CSS or Tables?
    By Void in forum HTML Programming
    Replies: 10
    Last Post: 10-17-2006, 11:44 AM
  5. Still using tables?
    By ShortCircuit in forum HTML Programming
    Replies: 11
    Last Post: 09-30-2006, 08:45 AM

Bookmarks

Bookmarks

     
        Algorithms and Data Structures

        Java tutorials

        Algorithms Forum

Posting Permissions

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