0% found this document useful (0 votes)
36 views2 pages

Penetration Testing

1) Android is a mobile operating system based on a modified version of the Linux kernel and other open source software. It was developed by Google and the Open Handset Alliance. 2) The main mobile operating systems are Android, iOS, Windows, BlackBerry OS, and Symbian. Android and iOS combined hold over 90% of the global market share. 3) The document provides SQL commands for creating tables, inserting data, updating data, deleting data and tables, sorting data, and counting records. It includes examples of the syntax for common operations like CREATE TABLE, INSERT, UPDATE, DELETE, DROP TABLE, and SELECT.

Uploaded by

Samir Mehta
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
36 views2 pages

Penetration Testing

1) Android is a mobile operating system based on a modified version of the Linux kernel and other open source software. It was developed by Google and the Open Handset Alliance. 2) The main mobile operating systems are Android, iOS, Windows, BlackBerry OS, and Symbian. Android and iOS combined hold over 90% of the global market share. 3) The document provides SQL commands for creating tables, inserting data, updating data, deleting data and tables, sorting data, and counting records. It includes examples of the syntax for common operations like CREATE TABLE, INSERT, UPDATE, DELETE, DROP TABLE, and SELECT.

Uploaded by

Samir Mehta
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
You are on page 1/ 2

http://www.engineersgarage.com/articles/what-is-android-introduction http://open-tube.

com/which-are-the-different-mobile-operating-systems-in-themarket-a-quick-view-for-beginners/ CREATE TABLE Syntax : CREATE TABLE table_name (column_name column_type); Eg : Create table student (firstname varchar(10) not null); Field Attribute NOT NULL is being used because we do not want this field to be NULL. SO if user will try to create a record with NULL value then MySQL will raise an error. INSERT TABLE INSERT INTO table_name ( field1, field2,...fieldN ) VALUES ( value1, value2,...valueN ); INSERT INTO student (firstname, lastname , date)VALUES ("james", "mark", '2007-05-06');

UPDATE TABLE Syntax : Update tablename set fieldname Eg : update users set password = mark Or Update users set password = 123 where firstname = mark;

Fetch Data from command promt:


1 : SELECT * from tablename

Fetch Particul name 2 : SELECT * from tablename where name = james;


Or SELECT * from tablename where name like Delete Table Delete from tablename ; %james%;

DROP TABLE DROP TABLE TABLENAME ; Sorting SELECT * from tablename ORDER BY fieldname ASC; SELECT * from tablename ORDER BY fieldname DESC;

Count Querry Select count (*) from tablename ; Eg : select count (*) from users

You might also like