81.What are the column comparisons operators?The = , <>, <=, <, >=, >,<<,>>, <=>, AND, OR, or LIKE operators are used in column comparisons in SELECT statements. 82.How can we get the number of rows affected by query?Number of rows can be obtained by
83.Is Mysql query is case sensitive?
All these examples are same. It is not case sensitive. 84.What is the difference between the LIKE and REGEXP operators?LIKE and REGEXP operators are used to express with ^ and %.
85.What is the difference between BLOB AND TEXT?A BLOB is a binary large object that can hold a variable amount of data. There are four types of BLOB –
A TEXT is a case-insensitive BLOB. The four TEXT types The only difference between BLOB and TEXT types is that sorting and comparison is performed in case-sensitive for BLOB values and case-insensitive for TEXT values. 86.What is the difference between mysql_fetch_array and mysql_fetch_object?Following are the differences between mysql_fetch_array and mysql_fetch_object: 87.How can we run batch mode in mysql?Following commands are used to run in batch mode:Each MyISAM table is stored on disk in three formats:
88.Where MyISAM table will be stored and also give their formats of storage?Each MyISAM table is stored on disk in three formats:
89.What are the different tables present in MyMYSQL?Total 5 types of tables are present:
MyISAM is the default storage engine as of MyMYSQL . 90.What is ISAM?ISAM is abbreviated as Indexed Sequential Access Method.It was developed by IBM to store and retrieve data on secondary storage systems like tapes. 91.What is InnoDB?lnnoDB is a transaction safe storage engine developed by Innobase Oy which is a Oracle Corporation now. 92.How MyMYSQL Optimizes DISTINCT?DISTINCT is converted to a GROUP BY on all columns and it will be combined with ORDER BY clause.
93.How to enter Characters as HEX Numbers?If you want to enter characters as HEX numbers, you can enter HEX numbers with single quotes and a prefix of (X), or just prefix HEX numbers with (Ox). 94.How to display top 50 rows?In MySql, top 50 rows are displayed by using this following query:
95.How many columns can be used for creating Index?Maximum of 16 indexed columns can be created for any standard table. 96.What is the different between NOW() and CURRENT_DATE()?NOW () command is used to show current year,month,date with hours,minutes and seconds. 97.What are the objects can be created using CREATE statement?Following objects are created using CREATE statement:
98.How many TRIGGERS are allowed in MySql table?SIX triggers are allowed in MySql table. They are as follows:
99.What are the nonstandard string types?Following are Non-Standard string types:
100.What are all the Common MYSQL Function?CONCAT(A, B) – Concatenates two string values to create a single string output. Often used to combine two or more fields into one single field. |