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 ATTRIBUTES Created by: B Mokshagna Reddy (BMR) ➢All HTML elements can have attributes. ➢Attributes provide additional information about elements. ➢Attributes are always specified in the start tag. ➢Attributes usually come in name/value pairs like: name="value" The href Attribute ➢The <a> or anchor tag defines a hyperlink. The href attribute specifies the URL of the page the link goes to: Example <a href="www.bmreducation.com">This is a Link</a> Result This is a Link The src Attribute ➢The <img> tag is used to embed an image in an HTML page. The <src> attribute specifies the path to the image to be displayed. Example <img src="BMR_OFFICIAL.gif"> Result The width and height Attribute ➢The <img> tag should also contain the <height> and <width> attributes, which specify the width and height of th...