We use cookies and other technologies on this website to enhance your user experience.
By clicking any link on this page you are giving your consent to our Privacy Policy and Cookies Policy.

Giới thiệu về MiniSgbd Run SQL

Thống DBMS (DBMS) thực hiện các lệnh trong ngôn ngữ SQL bằng dòng lệnh.

O MiniSGBD Run SQL (DBMS), é um aplicativo educativo para auxiliar o aprendizado da linguagem SQL. O app executa os comandos básicos de SQL por uma interface de linha de comando (Terminal), os comandos e querys são basicamente a primeira vista parecidos com o MySQL quando executados por linha de comando. Os dados são salvos e podem ser consultados, também possui uma lista de comandos anteriores executados. Segue a lista atualmente das operações possíveis.

Exemplos:

create database mundo;

use mundo;

show databases;

show tables;

create table pessoa (id integer primary key not null, nome varchar(40));

describe pessoa;

insert into pessoa values (1, 'Jhon');

select * from pessoa;

select id, nome from pessoa;

select t1.id, t2.id from table as t1 join table as t2 on t1.id = t2.id;

select all from pessoa order by id;

select * from pessoa where id = 1 and nome like '%jho%';

delete from pessoa where id = 1 and ... or ...;

update pessoa set nome = 'Jack' where id = 1 and ...;

drop table pessoa;

drop database mundo;

Tipos de dados = [integer, double, char, varchar(xx), date yyyy-mm-dd]

Tipos de dados = [null, not null, unique, primary key]

Para sair do programa = [exit ou quit]

Ajuda = [help; ou h; ou ?;] for help.

Có gì mới trong phiên bản mới nhất 1.2

Last updated on Dec 21, 2016

- Fixed internal storage error on 'create database'.
- Fixed code to accept data of type null in the command 'insert table values'.

- Corrigido erro de armazenamento interno em 'criar banco de dados'.
- Corrigido o código para aceitar dados do tipo null no comando 'inserir valores de tabela'

Đang tải bản dịch ...

Thông tin thêm Ứng dụng

Phiên bản mới nhất

Yêu cầu cập nhật MiniSgbd Run SQL 1.2

Được tải lên bởi

Angel Fleitas

Yêu cầu Android

Android 4.0+

Hiển thị nhiều hơn

MiniSgbd Run SQL Ảnh chụp màn hình

Ngôn ngữ
Đăng ký APKPure
Hãy là người đầu tiên có quyền truy cập vào bản phát hành, tin tức và hướng dẫn sớm của các trò chơi và ứng dụng Android tốt nhất.
Không, cám ơn
Đăng ký
Đăng ký thành công!
Bây giờ bạn đã đăng ký APKPure.
Đăng ký APKPure
Hãy là người đầu tiên có quyền truy cập vào bản phát hành, tin tức và hướng dẫn sớm của các trò chơi và ứng dụng Android tốt nhất.
Không, cám ơn
Đăng ký
Thành công!
Bây giờ bạn đã đăng ký nhận bản tin của chúng tôi.