In my adb shell
, in the databases, when I enter:
select * from Book
Becomes this.
In my adb shell
, in the databases, when I enter:
select * from Book
Becomes this.
you not selected the database. Use the command -> CD your_db_name to select your database then Use,
SELECT * FROM book;
A query normally consists of an SQL statement followed by a semicolon. (There are some exceptions where a semicolon may be omitted. QUIT, mentioned earlier, is one of them. We'll get to others later.)