MiniSgbd Run SQL

MiniSgbd Run SQL

Osvaldimar Costa
Dec 21, 2016
  • 2.0

    1 Rezensionen

  • 1.3 MB

    Dateigröße

  • Android 4.0+

    Android OS

Über MiniSgbd Run SQL

Mini SGBD (DBMS) Performs commands in the SQL language by command line.

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.

Mehr anzeigen

What's new in the latest 1.2

Last updated on 2016-12-21
- 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'

Videos und Screenshots

  • MiniSgbd Run SQL Plakat
  • MiniSgbd Run SQL Screenshot 1
  • MiniSgbd Run SQL Screenshot 2
  • MiniSgbd Run SQL Screenshot 3
  • MiniSgbd Run SQL Screenshot 4
  • MiniSgbd Run SQL Screenshot 5
  • MiniSgbd Run SQL Screenshot 6

Alte Versionen von MiniSgbd Run SQL

APKPure Zeichen

Superschnelles und sicheres Herunterladen über die APKPure-App

Ein Klick zur Installation von XAPK/APK-Dateien auf Android!

Download APKPure
thank icon
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.
Learn More about Policies