I have mysql schema CREATE TABLE foo(_id INTEGER PRIMARY KEY, name TEXT); insert into foo (_id, name) values (1, "Foo A"); insert into foo (_id, name) values (2, "Foo B"); CREATE TABLE bar (_id INTEGER PRIMARY KEY, title TEXT); insert into bar (_id, title) values (1, "Bar A"); insert into bar (_id, title) values (2, […]
The post could not be able to build schema in mySQL appeared first on BlogoSfera.