আমরা আপনার ব্যবহারকারীর অভিজ্ঞতা বাড়ানোর জন্য এই ওয়েবসাইটে কুকি এবং অন্যান্য প্রযুক্তি ব্যবহার করি।
এই পেজে কোনো লিঙ্কে ক্লিক করে আপনি আমাদের Privacy Policy and কুকি নীতিতে আপনার সম্মতি দিচ্ছেন।
ঠিক আছে আমি সম্মতি জানাচ্ছি আরো জানুন

MiniSgbd Run SQL সম্পর্কে

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

MiniSGBD Execute SQL (DBMS), is an educational application to assist or learn the SQL language. The application runs the basic SQL commands through a command-line interface (Terminal), commands and queries are basically a first-time view with MySQL when executed by the command line. The data is saved and can be queried, also have a list of previous commands executed. Here is a list of possible operations.

Examples:

create database world;

use world;

show databases;

show tables;

create table people (id integer primary key not null, name varchar(40));

describe people;

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

select * from people;

select id, name from people;

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

select all from people order by id;

select * from people where id = 1 and name like '%jho%';

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

update people set name = 'Jack' where id = 1 and ...;

drop table people;

drop database world;

Type data = [integer, double, char, varchar(xx), date yyyy-mm-dd]

Type data = [null, not null, unique, primary key]

Exit the program = [exit ou quit]

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

সর্বশেষ সংস্করণ 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'

অনুবাদ লোড হচ্ছে...

অতিরিক্ত অ্যাপ তথ্য

সাম্প্রতিক সংস্করণ

MiniSgbd Run SQL আপডেটের অনুরোধ করুন 1.2

আপলোড

Angel Fleitas

Android প্রয়োজন

Android 4.0+

আরো দেখান

MiniSgbd Run SQL স্ক্রিনশট

ভাষা
APKPure সাবস্ক্রাইব করুন
সেরা অ্যান্ড্রয়েড গেমস এবং অ্যাপ্লিকেশনগুলির প্রাথমিক রিলিজ, সংবাদ এবং গাইডগুলিতে অ্যাক্সেস পাওয়ার জন্য প্রথম হন।
না ধন্যবাদ
নিবন্ধন করুন
সফলভাবে সাবস্ক্রাইব!
আপনি এখন এপকপুরে সাবস্ক্রাইব করেছেন।
APKPure সাবস্ক্রাইব করুন
সেরা অ্যান্ড্রয়েড গেমস এবং অ্যাপ্লিকেশনগুলির প্রাথমিক রিলিজ, সংবাদ এবং গাইডগুলিতে অ্যাক্সেস পাওয়ার জন্য প্রথম হন।
না ধন্যবাদ
নিবন্ধন করুন
সাফল্য!
আপনি এখন আমাদের নিউজলেটারে সাবস্ক্রাইব করেছেন।