mySQL Database

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Jsnlaren
    New Member
    • Sep 2020
    • 1

    mySQL Database

    How to create mysql database for a company? Is it Resource constrained?
  • Banfa
    Recognized Expert Expert
    • Feb 2006
    • 9067

    #2
    That's rather an open ended question, basically,
    1. Get a computer, I'd choose Linux as an OS but Windows works to
    2. Download MySQL
    3. Install MySQL (on Linux these 2 steps can be done with the package manager)
    4. Configure the database service
    5. Design your database
    6. Create your tables
    7. Populate with initial data
    8. Test


    I'm sure a quick Google will give you the answer for the minimum system requirements but you can run a test installation on almost anything.

    Comment

    • SioSio
      Contributor
      • Dec 2019
      • 272

      #3
      The following supplements the procedure written by Banfa.
      1. Create an Oracle account.

      2. Download MySQL.

      3. Install MySQL.

      Comment

      • Naheedmir
        New Member
        • Jul 2020
        • 62

        #4
        First, open the MySQL command client then proceeds with the password.
        Syntax for creating database is
        create database <databasename >;
        Replace <databasename > with the desired name. Your database is ready now.

        Comment

        Working...