Mylin,
Tuesday, August 27, 2002, 8:17:13 AM, you wrote:

MC> I'm a newbie with mysql. I have a few question and would really appreciate 
MC> it if you can help me. I'm creating a database for a payroll system. I 
MC> actually finish with my entity relationship diagram.  What should be the 
MC> next step? I know I should create the database already but while reading the 
MC> mysql documentation I've been encountering so many questions that I'm 
MC> getting all confused on where to start.

MC> First, where does the priviledges come in? Specifically the alter, drop, 
MC> select, insert (etc) priviledges come in? Or does this concern the database 
MC> administrator which is not my concern since I'm only the software developer.

Look into database 'mysql'. It contains privilege tables. Description
of tables you can find here:
     http://www.mysql.com/doc/en/Privileges.html

Privileges for user could be granted on different levels: global,
database, table, column.

You can set up privileges using GRANT statement:
     http://www.mysql.com/doc/en/GRANT.html

MC> Mysql does not a have a feature like access where you link one key to
MC> another by dragging one field to another. does this mean that linking the 
MC> tables in mysql is done manually via the sql statements?

Yes. If you want to use more than one table you can do it like

     SELECT * FROM table1,table2 WHERE table1.id=table2.id

http://www.mysql.com/doc/en/Multiple_tables.html





-- 
For technical support contracts, goto https://order.mysql.com/?ref=ensita
This email is sponsored by Ensita.net http://www.ensita.net/
   __  ___     ___ ____  __
  /  |/  /_ __/ __/ __ \/ /    Egor Egorov
 / /|_/ / // /\ \/ /_/ / /__   [EMAIL PROTECTED]
/_/  /_/\_, /___/\___\_\___/   MySQL AB / Ensita.net
       <___/   www.mysql.com



---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to