i want to build a database with column and rows

4 views (last 30 days)
The table should have fields
NAME .... AGE .. SALARY
ashok .... 23 .....2300
john ..... . 34 .... 3400
horis ..... 40 .... 6700
and salary is a variable 'n' which changes the salary in the database ,when n gets the value in the command window and update the database .Please suggest
  1 Comment
Alberto
Alberto on 16 Apr 2014
I suggest to code your data as as a struct. For example:
D.id(1).Name= 'asrock'
D.id(1).Age= '23'
D.id(1).Salary= '2300'
D.id(2).Name= 'john' ...
I think its really confortable like this.

Sign in to comment.

Accepted Answer

Mischa Kim
Mischa Kim on 16 Apr 2014
Edited: Mischa Kim on 16 Apr 2014
Bikash, use table, e.g.,
NAME = {'ashok';'john';'horis'};
AGE = [23;34;40];
SALARY = [2300;3400;6700];
T = table(NAME, AGE, SALARY)

More Answers (1)

Bikash
Bikash on 20 Apr 2014
Thanks !

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!