STRUCTURED QUERY LANGUAGE(SQL) Created by: B Mokshagna Reddy (BMR) SQL DATA DEFINITION AND DATATYPES SQL Schema: An SQL schema is identified by a schema name and includes an authorization identifier name to indicate user or account who owns the schema, as well as descriptor for each elements in the schema. Schema creation with authorization: CREATE SCHEMA DATABASE_NAME AUTHORIZATION IDENTIFIER; Eg: CREATE SCHEMA COMPANY AUTHORIZATION ‘JSMITH’; Catalog: Named collection of schemas. Data Definition, Constraints, and Schema Changes Used to CREATE, DROP, and ALTER the descriptions of the tables (relations) of a database Creating a Database Syntax: CREATE DATABASE database_name; Creating a Table Syntax CREATE TABLE table_name (Column_name datatype[(size)], Column_name datatype[(size)], ); Specifies a new base relation by giving it a name, and specifying each of...
HTML QUOTATIONS
Created by: B Mokshagna Reddy (BMR)
HTML Quotations
➢It Contains <blockquote>,<q>, <abbr>, <address>, <cite>, and <bdo> HTML elements.HTML <blockquote> for Quotations
➢The HTML <blockquote> element defines a section that is quoted from another source.
Example
<p>ABOUT US</p>
<blockquote> We believe Education is everything wheather it is studies, sports, art, everything that starts from scratch to learn and become a successfull person in your life. This website contains all the information to study, read and gain the knowledge. We bought Education Sector to get all the books in each class. And then we bought Coding as it is the major area which everyone should learn and can invent new things. Finally we bought Reference sector to refer books in varous regions Eg: In Comptatative exams, in Animals, In General around the world. We try our best to provide you information in all aspects. </blockquote>
<blockquote> We believe Education is everything wheather it is studies, sports, art, everything that starts from scratch to learn and become a successfull person in your life. This website contains all the information to study, read and gain the knowledge. We bought Education Sector to get all the books in each class. And then we bought Coding as it is the major area which everyone should learn and can invent new things. Finally we bought Reference sector to refer books in varous regions Eg: In Comptatative exams, in Animals, In General around the world. We try our best to provide you information in all aspects. </blockquote>
Result
ABOUT US
We believe Education is everything wheather it is studies, sports, art, everything that starts from scratch to learn and become a successfull person in your life. This website contains all the information to study, read and gain the knowledge. We bought Education Sector to get all the books in each class. And then we bought Coding as it is the major area which everyone should learn and can invent new things. Finally we bought Reference sector to refer books in varous regions Eg: In Comptatative exams, in Animals, In General around the world. We try our best to provide you information in all aspects.
HTML <q> for Short Quotations
➢The HTML <q> tag defines a short quotation.Example
<p>ABOUT US</p>
<q> We believe Education is everything wheather it is studies, sports, art, everything that starts from scratch to learn and become a successfull person in your life. This website contains all the information to study, read and gain the knowledge. We bought Education Sector to get all the books in each class. And then we bought Coding as it is the major area which everyone should learn and can invent new things. Finally we bought Reference sector to refer books in varous regions Eg: In Comptatative exams, in Animals, In General around the world. We try our best to provide you information in all aspects. </q>
<q> We believe Education is everything wheather it is studies, sports, art, everything that starts from scratch to learn and become a successfull person in your life. This website contains all the information to study, read and gain the knowledge. We bought Education Sector to get all the books in each class. And then we bought Coding as it is the major area which everyone should learn and can invent new things. Finally we bought Reference sector to refer books in varous regions Eg: In Comptatative exams, in Animals, In General around the world. We try our best to provide you information in all aspects. </q>
Result
ABOUT US
We believe Education is everything wheather it is studies, sports, art, everything that starts from scratch to learn and become a successfull person in your life. This website contains all the information to study, read and gain the knowledge. We bought Education Sector to get all the books in each class. And then we bought Coding as it is the major area which everyone should learn and can invent new things. Finally we bought Reference sector to refer books in varous regions Eg: In Comptatative exams, in Animals, In General around the world. We try our best to provide you information in all aspects.
HTML <abbr> for Abbreviations
➢The HTML <abbr> tag defines an abbreviation or an acronym, like "HTML", "CSS", "Mr.", "Dr.", "ASAP", "ATM".➢Marking abbreviations can give useful information to browsers, translation systems and search-engines.
Example
<p><abbr title="B MOKSHAGNA REDDY EDUCATION"> BMR EDUCATION</abbr> was founded in 2022. </p>
Result
BMR EDUCATION was founded in 2022.
HTML <address> for Contact information
➢The HTML <address> tag defines the contact information for the author/owner of a document or an article.➢The contact information can be an email address, URL, physical address, phone number, social media handle, etc.
➢The text in the <address> element usually renders in italic, and browsers will always add a line break before and after the <address> element.
Example
<address>
Written by Manogna<br>
Visit us at:<br>
bmreducation.bmrSpaces.com<br>
Andhra Pradesh<br>
India
</address>
Result
Written by Manogna
Visit us at:
bmreducation.bmrSpaces.com
Andhra Pradesh
India
Visit us at:
bmreducation.bmrSpaces.com
Andhra Pradesh
India
HTML <cite> for Work Title
➢The HTML <cite> tag defines the title of a creative work (e.g. a book, a poem, a song, a movie, a painting, a sculpture, etc.).➢The text in the <cite> element usually renders in italic.
Example
<p>The Development of <cite>BMR EDUCATION </cite> was started in December 2021</p>
Result
The Formula of water is H2O.
HTML <bdo> or Bi-Directional Override
➢BDO stands for Bi-Directional Override.➢The HTML <bdo> tag is used to override the current text direction:
Example
<bdo dir="rtl">This test will be written from right to left</bdo>
Result
This test will be written from right to left
Know More at BMR EDUCATION
Comments
Post a Comment