Create table | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
- 4

Create table

create table

17th Sep 2017, 1:24 PM
Sunil Kamboj
Sunil Kamboj - avatar
2 Respostas
+ 4
You should complete the course first but the answer is ā†’ aĀ tableĀ is a set of data elements (values) using a model of vertical columns (identifiable by name) and horizontal rows, the cell being the unit where a row and column intersect. AĀ tableĀ has a specified number of columns, but can have any number of rows.
17th Sep 2017, 1:57 PM
Ekansh
+ 1
CREATE TABLE table_name ( column_name1 data_type(size), column_name2 data_type(size), column_name3 data_type(size), .... columnN data_type(size) );
17th Sep 2017, 2:48 PM
Daniel
Daniel - avatar