Point me to right direction
Posted: Sat 23 Jul 2011 05:09
Using dbForge Studio for MySQL 5.0 Express and found this software very useful. But would require some help to get me started with it according to me needs. I am beginner in MySql management but want to learn.
For what I want to use SQLyog is for simple data editing of my MySQL database in grid view (for easy editing excel like manner).
But for that I need to have my data sorted in a best way for easy viewing. The problem is that my important data is in two separate tables. I want to have data from two tables into one single table where will be easy to look and edit in that way.
In which way I must work on to have data from 2 tables visible and well sorted into one single table?
Simple example: I have 'table1_fullname' and 'Table2_nickname'.
In table1_fullname have 'full_name' column and 'birthdate' column and few others columns.
full_name column have 7 records:
John
Bill
Michael
Gordon
George
Arnold
Mark
In table2_nickname have 'nick' column and 'phone' column and few more.
phone column have 5 records:
568456456
111223346
987665456
879562540
564056658
I need to get into single data table for easy editing is full_name column (from table1) and phone column (from table2). So, every phone number need to have proper name showed there.
The exact data look would be:
John 568456456
Bill 111223346
Gordon 987665456
Arnold 879562540
Mark 564056658
Please note that in table1 have ID number added in separate column for every record there and those ID numbers are given also in table2 for every record so suppose according to that ID number proper connection (relationship) can be found between those two data which I need to get.
Thanks in advance for pointing me to right direction for this!
For what I want to use SQLyog is for simple data editing of my MySQL database in grid view (for easy editing excel like manner).
But for that I need to have my data sorted in a best way for easy viewing. The problem is that my important data is in two separate tables. I want to have data from two tables into one single table where will be easy to look and edit in that way.
In which way I must work on to have data from 2 tables visible and well sorted into one single table?
Simple example: I have 'table1_fullname' and 'Table2_nickname'.
In table1_fullname have 'full_name' column and 'birthdate' column and few others columns.
full_name column have 7 records:
John
Bill
Michael
Gordon
George
Arnold
Mark
In table2_nickname have 'nick' column and 'phone' column and few more.
phone column have 5 records:
568456456
111223346
987665456
879562540
564056658
I need to get into single data table for easy editing is full_name column (from table1) and phone column (from table2). So, every phone number need to have proper name showed there.
The exact data look would be:
John 568456456
Bill 111223346
Gordon 987665456
Arnold 879562540
Mark 564056658
Please note that in table1 have ID number added in separate column for every record there and those ID numbers are given also in table2 for every record so suppose according to that ID number proper connection (relationship) can be found between those two data which I need to get.
Thanks in advance for pointing me to right direction for this!