{"id":126808,"date":"2023-04-28T10:00:07","date_gmt":"2023-04-28T04:30:07","guid":{"rendered":"https:\/\/www.aplustopper.com\/?p=126808"},"modified":"2023-04-29T09:58:28","modified_gmt":"2023-04-29T04:28:28","slug":"plus-two-computer-application-chapter-wise-previous-questions-chapter-9","status":"publish","type":"post","link":"https:\/\/www.aplustopper.com\/plus-two-computer-application-chapter-wise-previous-questions-chapter-9\/","title":{"rendered":"Plus Two Computer Application Chapter Wise Previous Questions Chapter 9 Structured Query Language"},"content":{"rendered":"

Kerala Plus Two Computer Application Chapter Wise Previous Questions Chapter 9 Structured Query Language<\/h2>\n

Plus Two Computer Application Structured Query Language 1 Mark Important Questions<\/h3>\n

Question 1.
\n______ keyword is used in SELECT query to eliminate duplicate values in a column. (MARCH-2016)<\/span>
\nUNIQUE
\nb) DISTINCT
\nNOT NULL
\nd) PRIMARY
\nAnswer:
\nDISTINCT<\/p>\n

Question 2.
\n______ clause of SELECT query is used to apply condition to form groups of records. (MAY-2016)<\/span>
\na) orderby
\n(b) groupby
\n(c) having
\n(d) where
\nAnswer:
\n(b) groupby<\/p>\n

Question 3.
\n_______ command in SQL is used to display the structure of a table.(MAY-2017)<\/span>
\na) LIST
\nb) STRUCT
\nc) DESCRIBE
\nd) SHOW
\nAnswer:
\nc) DESCRIBE<\/p>\n

Plus Two Computer Application Structured Query Language 2 Marks Important Questions<\/h3>\n

Question 1.
\nHow will you add a new column to an existing table using SQL statement ? (MARCH-2016)<\/span>
\nAnswer:
\nAlter command with add keyword is used to add a new column to an existing table. Avertable <table name> add <column name> <datatype> [<size>] [<constraint>][FIRST\/AFTER<column name>];
\nEg : Avertable ACCOUNTS add Type varchar(10) AFTER Name;<\/p>\n

Question 2.
\nWhat is a view? How can we create a view using SQL statement? (MAY-2016)<\/span>
\nAnswer:
\nA view is a virtual table. That doesnot really exists but is derived from one or more tables. It is used to view a small part of the entire database.
\nCreate view command is used to create a view. Syntax eg:- create view <view name> as select * from <table name> [Where <condition>];
\neg:- create view studentView as select from student;<\/p>\n

Question 3.
\nExplain primary key constraint with an example. (MAY-2017)<\/span>
\nAnswer:
\nPrimary Key:<\/strong> A primary key is one of the Candidate Keys. It is a set of one or more attributes that can uniquely identify tuples in a relation. Rollno, AdmNo, EmpCode etc are the examples of primary key.<\/p>\n

Plus Two Computer Application Structured Query Language 3 Marks Important Questions<\/h3>\n

Question 1.
\nAnswer the following questions . (MARCH-2016)<\/span><\/p>\n\n\n\n\n\n\n\n\n
Acc. No.<\/strong><\/td>\nName<\/strong><\/td>\nBranch<\/strong><\/td>\nAmount<\/strong><\/td>\n<\/tr>\n
1001<\/td>\nAnil<\/td>\nTrivandrum<\/td>\n30000<\/td>\n<\/tr>\n
1002<\/td>\nSanjay<\/td>\nEmakulam<\/td>\n130000<\/td>\n<\/tr>\n
1003<\/td>\nMeera<\/td>\nKottayam<\/td>\n275000<\/td>\n<\/tr>\n
1004<\/td>\nSneha<\/td>\nKottayam<\/td>\n50000<\/td>\n<\/tr>\n
1005<\/td>\nRajan<\/td>\nThrisuur<\/td>\n75000<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n

a) Write SQL statements to do the following :
\ni) Display all the details of accounts with amount greater than 50000 in Emakulam branch.
\nii) Display Acc. No., Branch and Amount in the descending order of amount.
\niii) Display the number of accounts in each branch.
\nAnswer:
\ni) Select * from ACCOUNTS where Amount>50000 and Branch = “Emakulam”
\nii) Select Acc.No, Branch, Amount from ACCOUNTS order by Amount desc;
\niii) Select Branch, count (*) from ACCOUNTS group by branch.<\/p>\n

b) Write SQL statements to do the following
\ni) Add a new record into the table.
\nii) Update the amount of Sanjay to 100000.
\niii) Delete the details of Anil.
\nAnswer:
\ni) Insert into ACCOUNTS values (1006, \u2018Alvis\u2019, \u2018Thrissur\u2019, 50000);
\nii) Update ACCOUNTS set Amount = 100000 where Name = \u2018Sanjay\u2019;
\niii) Delete from ACCOUNTS where Name = \u2018Anil\u2019;<\/p>\n

Question 2.
\na) Explain SQL statements used to insert and delete data from a table. (MAY-2016)<\/span>
\nb) Explain any two DDL commands
\nAnswer:
\na) Insert<\/strong> command is used to insert new records into a table,. The keyword used with insert is into
\nSyntax:<\/strong> Insert into <table name>[column1, Column2,………, column N] values [value1,Value 2,……… value N];
\neg:- Insert into student (Regno, name) Values(101,\u2018Jose\u2019);<\/p>\n

b) delete<\/strong> This command is used to delete one or all records from a table
\nSyntax:<\/strong> delete from <table name> [where con-dition];
\neg:- delete from student; -This command deletes all records.<\/p>\n

b) DDL Commands<\/p>\n

1) Create table :-<\/strong> This command is used to create a table.
\nSyntax:<\/strong> create table <table name>
\n(column name> <data type>[<constraint>]
\n[, column name> <data type>,]……… );
\neg:- create table student (Rno int primary key, name varchar(20));<\/p>\n

2) Alter table :-<\/strong> This command is used to change the structure or add a new column to an existing table.
\nModify, Add are the keywords used.
\nSyntax:<\/strong> Alter table <table name> modify column name><data type>
\n[<size>] [constraint];
\neg:- Alter table student modify name varchar (30);
\nSyntax:<\/strong> Alter table <table name>
\nAdd <new column name> <data type>
\n[<size>] [constraint>] [first j After <column-name>];
\neg:- Alter table student add grade varchar (2);<\/p>\n

3) Drop table:-<\/strong> This command is used to delete the structure of the table.
\nSyntax:<\/strong> Drop table <table name>;
\neg:- Drop table student;<\/p>\n

Question 3.
\nWrite SQL for (MAY-2017)<\/span>
\na) Create a table student with the data [nafne_char(20), rollno number(3),marks number(3)].
\nb) List name and rollno of all students
\nc) List name and rollno of students having marks>600.
\nAnswer:
\na) create table student(name varchar(20) primary key.rollno int,marks int);
\nb) select name.rollno from student;
\nc) select name.rollno from student where marks>600;<\/p>\n

Question 4.
\nAn employee table contains name, empno, basicpay, desig. (MAY-2017)<\/span>
\nWrite SQL for
\na) Display name, empno and basicpay of all managers,(desig=”manager”)
\nb) Display empno and salary of all employees
\n(salary=basicpay + da)
\n(da=basicpay\u00a0 *\u00a0 1.15)
\nc) Display name and empno of all the employees whose basicpay<10000.
\nAnswer:
\na) select name,empno,basicpay from employee where design=”manager”;
\nb) select empno,basicpay + basicpay * 1.15 from employee;
\nc) select name,empno from employee where basicpay< 10000;<\/p>\n

Plus Two Computer Application Structured Query Language\u00a0 5 Marks Important Questions<\/h3>\n

Question 1.
\nThe structure of the table \u2018EMPLOYEE\u2019 is given below. (MARCH-2017)<\/span>
\n\"Plus
\nWrite SQL statement for the following
\na) Insert a record into the table.
\nb) Update DA with 60% basic pay
\nc) Display the details of employees whose basic pay is greaterthan 20000.
\nd) Rename the table EMPLOYEE to EMPDETAILS
\nAnswer:
\nINSERT INTO EMPLOYEE VALUES
\n(101,’Alvis’,25000,NULL,NULL);
\nb) UPDATE EMPLOYEE SET DA= Basicpay * 6;
\nc) SELECT * FROM EMPLOYEE WHERE Basicpay > 20000;
\nd) ALTER TABLE EMPLOYEE RENAME TO EMPDETAILS;<\/p>\n

Plus Two Computer Application Chapter Wise Previous Questions and Answers<\/a><\/h4>\n","protected":false},"excerpt":{"rendered":"

Kerala Plus Two Computer Application Chapter Wise Previous Questions Chapter 9 Structured Query Language Plus Two Computer Application Structured Query Language 1 Mark Important Questions Question 1. ______ keyword is used in SELECT query to eliminate duplicate values in a column. (MARCH-2016) UNIQUE b) DISTINCT NOT NULL d) PRIMARY Answer: DISTINCT Question 2. ______ clause […]<\/p>\n","protected":false},"author":5,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_genesis_hide_title":false,"_genesis_hide_breadcrumbs":false,"_genesis_hide_singular_image":false,"_genesis_hide_footer_widgets":false,"_genesis_custom_body_class":"","_genesis_custom_post_class":"","_genesis_layout":"","footnotes":""},"categories":[42728],"tags":[],"yoast_head":"\nPlus Two Computer Application Chapter Wise Previous Questions Chapter 9 Structured Query Language - A Plus Topper<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.aplustopper.com\/plus-two-computer-application-chapter-wise-previous-questions-chapter-9\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Plus Two Computer Application Chapter Wise Previous Questions Chapter 9 Structured Query Language\" \/>\n<meta property=\"og:description\" content=\"Kerala Plus Two Computer Application Chapter Wise Previous Questions Chapter 9 Structured Query Language Plus Two Computer Application Structured Query Language 1 Mark Important Questions Question 1. ______ keyword is used in SELECT query to eliminate duplicate values in a column. (MARCH-2016) UNIQUE b) DISTINCT NOT NULL d) PRIMARY Answer: DISTINCT Question 2. ______ clause […]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.aplustopper.com\/plus-two-computer-application-chapter-wise-previous-questions-chapter-9\/\" \/>\n<meta property=\"og:site_name\" content=\"A Plus Topper\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/aplustopper\/\" \/>\n<meta property=\"article:published_time\" content=\"2023-04-28T04:30:07+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-04-29T04:28:28+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.aplustopper.com\/wp-content\/uploads\/2020\/12\/Plus-Two-Computer-Application-Chapter-Wise-Previous-Questions-Chapter-9-Structured-Query-Language-1.png\" \/>\n<meta name=\"twitter:card\" content=\"summary\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Prasanna\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.aplustopper.com\/#organization\",\"name\":\"Aplus Topper\",\"url\":\"https:\/\/www.aplustopper.com\/\",\"sameAs\":[\"https:\/\/www.facebook.com\/aplustopper\/\"],\"logo\":{\"@type\":\"ImageObject\",\"@id\":\"https:\/\/www.aplustopper.com\/#logo\",\"inLanguage\":\"en-US\",\"url\":\"https:\/\/www.aplustopper.com\/wp-content\/uploads\/2018\/12\/Aplus_380x90-logo.jpg\",\"contentUrl\":\"https:\/\/www.aplustopper.com\/wp-content\/uploads\/2018\/12\/Aplus_380x90-logo.jpg\",\"width\":1585,\"height\":375,\"caption\":\"Aplus Topper\"},\"image\":{\"@id\":\"https:\/\/www.aplustopper.com\/#logo\"}},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.aplustopper.com\/#website\",\"url\":\"https:\/\/www.aplustopper.com\/\",\"name\":\"A Plus Topper\",\"description\":\"Improve your Grades\",\"publisher\":{\"@id\":\"https:\/\/www.aplustopper.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.aplustopper.com\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"ImageObject\",\"@id\":\"https:\/\/www.aplustopper.com\/plus-two-computer-application-chapter-wise-previous-questions-chapter-9\/#primaryimage\",\"inLanguage\":\"en-US\",\"url\":\"https:\/\/www.aplustopper.com\/wp-content\/uploads\/2020\/12\/Plus-Two-Computer-Application-Chapter-Wise-Previous-Questions-Chapter-9-Structured-Query-Language-1.png\",\"contentUrl\":\"https:\/\/www.aplustopper.com\/wp-content\/uploads\/2020\/12\/Plus-Two-Computer-Application-Chapter-Wise-Previous-Questions-Chapter-9-Structured-Query-Language-1.png\",\"width\":237,\"height\":118,\"caption\":\"Plus Two Computer Application Chapter Wise Previous Questions Chapter 9 Structured Query Language 1\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.aplustopper.com\/plus-two-computer-application-chapter-wise-previous-questions-chapter-9\/#webpage\",\"url\":\"https:\/\/www.aplustopper.com\/plus-two-computer-application-chapter-wise-previous-questions-chapter-9\/\",\"name\":\"Plus Two Computer Application Chapter Wise Previous Questions Chapter 9 Structured Query Language - A Plus Topper\",\"isPartOf\":{\"@id\":\"https:\/\/www.aplustopper.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.aplustopper.com\/plus-two-computer-application-chapter-wise-previous-questions-chapter-9\/#primaryimage\"},\"datePublished\":\"2023-04-28T04:30:07+00:00\",\"dateModified\":\"2023-04-29T04:28:28+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.aplustopper.com\/plus-two-computer-application-chapter-wise-previous-questions-chapter-9\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.aplustopper.com\/plus-two-computer-application-chapter-wise-previous-questions-chapter-9\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.aplustopper.com\/plus-two-computer-application-chapter-wise-previous-questions-chapter-9\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.aplustopper.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Plus Two Computer Application Chapter Wise Previous Questions Chapter 9 Structured Query Language\"}]},{\"@type\":\"Article\",\"@id\":\"https:\/\/www.aplustopper.com\/plus-two-computer-application-chapter-wise-previous-questions-chapter-9\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.aplustopper.com\/plus-two-computer-application-chapter-wise-previous-questions-chapter-9\/#webpage\"},\"author\":{\"@id\":\"https:\/\/www.aplustopper.com\/#\/schema\/person\/2533e4338ba14fc0e4001efcca2f8794\"},\"headline\":\"Plus Two Computer Application Chapter Wise Previous Questions Chapter 9 Structured Query Language\",\"datePublished\":\"2023-04-28T04:30:07+00:00\",\"dateModified\":\"2023-04-29T04:28:28+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.aplustopper.com\/plus-two-computer-application-chapter-wise-previous-questions-chapter-9\/#webpage\"},\"wordCount\":979,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.aplustopper.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.aplustopper.com\/plus-two-computer-application-chapter-wise-previous-questions-chapter-9\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.aplustopper.com\/wp-content\/uploads\/2020\/12\/Plus-Two-Computer-Application-Chapter-Wise-Previous-Questions-Chapter-9-Structured-Query-Language-1.png\",\"articleSection\":[\"HSSLiVE\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.aplustopper.com\/plus-two-computer-application-chapter-wise-previous-questions-chapter-9\/#respond\"]}]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.aplustopper.com\/#\/schema\/person\/2533e4338ba14fc0e4001efcca2f8794\",\"name\":\"Prasanna\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\/\/www.aplustopper.com\/#personlogo\",\"inLanguage\":\"en-US\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/174540ad43736c7d1a4c4f83c775e74d?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/174540ad43736c7d1a4c4f83c775e74d?s=96&d=mm&r=g\",\"caption\":\"Prasanna\"},\"url\":\"https:\/\/www.aplustopper.com\/author\/prasanna\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Plus Two Computer Application Chapter Wise Previous Questions Chapter 9 Structured Query Language - A Plus Topper","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.aplustopper.com\/plus-two-computer-application-chapter-wise-previous-questions-chapter-9\/","og_locale":"en_US","og_type":"article","og_title":"Plus Two Computer Application Chapter Wise Previous Questions Chapter 9 Structured Query Language","og_description":"Kerala Plus Two Computer Application Chapter Wise Previous Questions Chapter 9 Structured Query Language Plus Two Computer Application Structured Query Language 1 Mark Important Questions Question 1. ______ keyword is used in SELECT query to eliminate duplicate values in a column. (MARCH-2016) UNIQUE b) DISTINCT NOT NULL d) PRIMARY Answer: DISTINCT Question 2. ______ clause […]","og_url":"https:\/\/www.aplustopper.com\/plus-two-computer-application-chapter-wise-previous-questions-chapter-9\/","og_site_name":"A Plus Topper","article_publisher":"https:\/\/www.facebook.com\/aplustopper\/","article_published_time":"2023-04-28T04:30:07+00:00","article_modified_time":"2023-04-29T04:28:28+00:00","og_image":[{"url":"https:\/\/www.aplustopper.com\/wp-content\/uploads\/2020\/12\/Plus-Two-Computer-Application-Chapter-Wise-Previous-Questions-Chapter-9-Structured-Query-Language-1.png"}],"twitter_card":"summary","twitter_misc":{"Written by":"Prasanna","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Organization","@id":"https:\/\/www.aplustopper.com\/#organization","name":"Aplus Topper","url":"https:\/\/www.aplustopper.com\/","sameAs":["https:\/\/www.facebook.com\/aplustopper\/"],"logo":{"@type":"ImageObject","@id":"https:\/\/www.aplustopper.com\/#logo","inLanguage":"en-US","url":"https:\/\/www.aplustopper.com\/wp-content\/uploads\/2018\/12\/Aplus_380x90-logo.jpg","contentUrl":"https:\/\/www.aplustopper.com\/wp-content\/uploads\/2018\/12\/Aplus_380x90-logo.jpg","width":1585,"height":375,"caption":"Aplus Topper"},"image":{"@id":"https:\/\/www.aplustopper.com\/#logo"}},{"@type":"WebSite","@id":"https:\/\/www.aplustopper.com\/#website","url":"https:\/\/www.aplustopper.com\/","name":"A Plus Topper","description":"Improve your Grades","publisher":{"@id":"https:\/\/www.aplustopper.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.aplustopper.com\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"ImageObject","@id":"https:\/\/www.aplustopper.com\/plus-two-computer-application-chapter-wise-previous-questions-chapter-9\/#primaryimage","inLanguage":"en-US","url":"https:\/\/www.aplustopper.com\/wp-content\/uploads\/2020\/12\/Plus-Two-Computer-Application-Chapter-Wise-Previous-Questions-Chapter-9-Structured-Query-Language-1.png","contentUrl":"https:\/\/www.aplustopper.com\/wp-content\/uploads\/2020\/12\/Plus-Two-Computer-Application-Chapter-Wise-Previous-Questions-Chapter-9-Structured-Query-Language-1.png","width":237,"height":118,"caption":"Plus Two Computer Application Chapter Wise Previous Questions Chapter 9 Structured Query Language 1"},{"@type":"WebPage","@id":"https:\/\/www.aplustopper.com\/plus-two-computer-application-chapter-wise-previous-questions-chapter-9\/#webpage","url":"https:\/\/www.aplustopper.com\/plus-two-computer-application-chapter-wise-previous-questions-chapter-9\/","name":"Plus Two Computer Application Chapter Wise Previous Questions Chapter 9 Structured Query Language - A Plus Topper","isPartOf":{"@id":"https:\/\/www.aplustopper.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.aplustopper.com\/plus-two-computer-application-chapter-wise-previous-questions-chapter-9\/#primaryimage"},"datePublished":"2023-04-28T04:30:07+00:00","dateModified":"2023-04-29T04:28:28+00:00","breadcrumb":{"@id":"https:\/\/www.aplustopper.com\/plus-two-computer-application-chapter-wise-previous-questions-chapter-9\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.aplustopper.com\/plus-two-computer-application-chapter-wise-previous-questions-chapter-9\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.aplustopper.com\/plus-two-computer-application-chapter-wise-previous-questions-chapter-9\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.aplustopper.com\/"},{"@type":"ListItem","position":2,"name":"Plus Two Computer Application Chapter Wise Previous Questions Chapter 9 Structured Query Language"}]},{"@type":"Article","@id":"https:\/\/www.aplustopper.com\/plus-two-computer-application-chapter-wise-previous-questions-chapter-9\/#article","isPartOf":{"@id":"https:\/\/www.aplustopper.com\/plus-two-computer-application-chapter-wise-previous-questions-chapter-9\/#webpage"},"author":{"@id":"https:\/\/www.aplustopper.com\/#\/schema\/person\/2533e4338ba14fc0e4001efcca2f8794"},"headline":"Plus Two Computer Application Chapter Wise Previous Questions Chapter 9 Structured Query Language","datePublished":"2023-04-28T04:30:07+00:00","dateModified":"2023-04-29T04:28:28+00:00","mainEntityOfPage":{"@id":"https:\/\/www.aplustopper.com\/plus-two-computer-application-chapter-wise-previous-questions-chapter-9\/#webpage"},"wordCount":979,"commentCount":0,"publisher":{"@id":"https:\/\/www.aplustopper.com\/#organization"},"image":{"@id":"https:\/\/www.aplustopper.com\/plus-two-computer-application-chapter-wise-previous-questions-chapter-9\/#primaryimage"},"thumbnailUrl":"https:\/\/www.aplustopper.com\/wp-content\/uploads\/2020\/12\/Plus-Two-Computer-Application-Chapter-Wise-Previous-Questions-Chapter-9-Structured-Query-Language-1.png","articleSection":["HSSLiVE"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.aplustopper.com\/plus-two-computer-application-chapter-wise-previous-questions-chapter-9\/#respond"]}]},{"@type":"Person","@id":"https:\/\/www.aplustopper.com\/#\/schema\/person\/2533e4338ba14fc0e4001efcca2f8794","name":"Prasanna","image":{"@type":"ImageObject","@id":"https:\/\/www.aplustopper.com\/#personlogo","inLanguage":"en-US","url":"https:\/\/secure.gravatar.com\/avatar\/174540ad43736c7d1a4c4f83c775e74d?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/174540ad43736c7d1a4c4f83c775e74d?s=96&d=mm&r=g","caption":"Prasanna"},"url":"https:\/\/www.aplustopper.com\/author\/prasanna\/"}]}},"jetpack_sharing_enabled":true,"jetpack_featured_media_url":"","_links":{"self":[{"href":"https:\/\/www.aplustopper.com\/wp-json\/wp\/v2\/posts\/126808"}],"collection":[{"href":"https:\/\/www.aplustopper.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.aplustopper.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.aplustopper.com\/wp-json\/wp\/v2\/users\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/www.aplustopper.com\/wp-json\/wp\/v2\/comments?post=126808"}],"version-history":[{"count":1,"href":"https:\/\/www.aplustopper.com\/wp-json\/wp\/v2\/posts\/126808\/revisions"}],"predecessor-version":[{"id":159114,"href":"https:\/\/www.aplustopper.com\/wp-json\/wp\/v2\/posts\/126808\/revisions\/159114"}],"wp:attachment":[{"href":"https:\/\/www.aplustopper.com\/wp-json\/wp\/v2\/media?parent=126808"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.aplustopper.com\/wp-json\/wp\/v2\/categories?post=126808"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.aplustopper.com\/wp-json\/wp\/v2\/tags?post=126808"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}