08 SQLite Create, Read Operations

Publicado em: 11 Setembro 2017
no canal de: Yogendra Tamang
112
2

SQLite Download Page:
https://sqlite.org/download.html
-------------------------------------------------------------------
Create Database

sqlite3 Nec.db
----------------------
Create Table

create table student(studentID integer, name varchar(50), roll varchar(2), age integer);
----------------------------------
Insert Student:

Insert into Student values(1, 'Ashish', 'ELX-422', 22):
------------------------------
to get data:
(all Column, all row)
select * from student;

-----------------------
certain column , all row:

select fullname, age from student;

------------------------------------
certain column, certain row:

select fullname, age from student where condition;


Nesta página do site você pode assistir ao vídeo on-line 08 SQLite Create, Read Operations duração hora minuto segundo em boa qualidade , que foi baixado pelo usuário Yogendra Tamang 11 Setembro 2017, compartilhe o link com seus amigos e conhecidos, no youtube este vídeo já foi visto 112 vezes e gostou 2 espectadores. Boa visualização!