Select Database in MySQL

SELECT DATABASE In MySQL, the USE command is used to select a particular MySQL database to work with. Syntax: USE name; Parameters: name: It is used to specify the name of the database to be selected. The database name, table name, and table fields’ names in MySQL are case-sensitive. Example: USE stores; Output: Database changed … Read more

Create Database in MySQL

MySQL CREATE DATABASE To create a MySQL database, open the MySQL Command Line Client. The MySQL Command Line Client will appear with a mysql> prompt. Here you will have to write the already set password. Now the next step is the creation of the database. Syntax: CREATE DATABASE name; Parameters: name: It is used to … Read more

Data Types in MySQL

MySQL Data Types A data type represents the type of data that can be stored and processed. Some common data types include integer, floating point, boolean, etc. A data type also specifies the type of operations that can be performed on that type. MySQL supports a lot of the standard data types of SQL. These … Read more

History of MySQL

MySQL was created by a Swedish company, MySQL AB, which was founded in 1995. The company was later acquired by Sun Microsystems in the year 2008 for about $1 billion. The project of MySQL began in the year 1979 in the form of UNIREG which was an in-house database tool developed to manage databases. UNIREG … Read more

Backbone.js Utility

The Backbone.JS Utility class is a set of methods. These methods are used to manipulate, modify and utilise the Backbone.JS Utility. Backbone.noConflict: It is used to get the Backbone objects back to its original value. It also facilitates a facility to store reference to a backbone. Syntax: var variable1 = Backbone.noConflict(); var variable2 = variable1.Model.extend(…); … Read more

Backbone.js DelegateEvents()

The Backbone.JS View DelegateEvents() method binds elements to the specified DOM elements with callback methods to handle events. Syntax: DelegateEvents (events) Parameters: events: This parameter is used to specify the required events. Example: Example Output: Example