Thanks to visit codestin.com
Credit goes to github.com

Skip to content

ebredy/gooduncle-columnar-db

Repository files navigation

gooduncle-columnar-db

php implementation for a columnar datastore

this uses mysql style syntax and all commands are case insensitive:

SHOW databases

list databases; 

USE nameOfDatabase

use ErwinDB; 

create table

create tableName(first_name varchar(27), age int(10));

insert table

insert into tableName(first_name, age) values('Erwin',1000);

update table

update tableName set first_name='Bob' where first_name ='Erwin'; 

select * From table

select * from users where first_name ='Erwin'; 

select fields from table

select first_name, age from users where first_name ='Erwin'; 

delete table

delete from users where first_name ='Erwin'; 

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages