14 lines
490 B
MySQL
14 lines
490 B
MySQL
|
CREATE TABLE technologies (
|
||
|
name VARCHAR(255),
|
||
|
details VARCHAR(255)
|
||
|
);
|
||
|
insert into technologies values (
|
||
|
'Go', 'An open source programming language that makes it easy to build simple and efficient software.'
|
||
|
);
|
||
|
insert into technologies values (
|
||
|
'JavaScript', 'A lightweight, interpreted, or just-in-time compiled programming language with first-class functions.'
|
||
|
);
|
||
|
insert into technologies values (
|
||
|
'PostgreSQL', 'A powerful, open source object-relational database system'
|
||
|
);
|