i want to build a database with column and rows

3 次查看(过去 30 天)
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 个评论
Alberto
Alberto 2014-4-16
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.

请先登录,再进行评论。

采纳的回答

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

更多回答(1 个)

Bikash
Bikash 2014-4-20
Thanks !

类别

Help CenterFile Exchange 中查找有关 Database Toolbox 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by