21.What is command to display all databases?SHOW DATABASES; 22.What is command to display current Date and Time ?SELECT NOW(); 23.What are the objects you can use with CREATE statement?
24.What are the nonstandard string types?TINYTEXT, TEXT, MEDIUMTEXT and LONGTEXT 25. What is SQLyog?The SQLyog program is Software which provide GUI tool for MySQL. 26.What are string datatype in MySQL?
27.How to get the next auto-increment id in mysql?Use LAST_INSERT_ID() from your MySQL query. 28.What is MySQL?MySQL is a multithreaded, multi-user SQL database management system which has more than 11 million installations. This is the world's second most popular and widely used open source database. 29.In which language MySQL is written?MySQL is written in C and C++ and its SQL parser is written in yacc. 30.What are the technical specification of MySQL?MySQL has the following technical specifications -
31.How many Triggers are possible in MySQL?There are only six Triggers allowed to use in MySQL database.
32.What is heap table?Tables that are present in memory is known as HEAP tables. When you create a heap table in MySQL, you should need to specify the TYPE as HEAP. These tables are commonly known as memory tables. They are used for high speed storage on temporary basis. They do not allow BLOB or TEXT fields. 33.What is BLOB and TEXT in MySQL?BLOB is an acronym stands for binary large object. It is used to hold a variable amount of data.
The differences among all these are the maximum length of values they can hold. TEXT is case-insensitive BLOB. TEXT values are non-binary strings (character string). They have a character set and values are stored and compared based on the collation of the character set. There are four types of TEXT. 34.What is the difference between heap table and temporary table?Heap tables: 35.What is the difference between FLOAT and DOUBLE?FLOAT stores floating point numbers with accuracy up to 8 places and allocates 4 bytes, on the other hand DOUBLE stores floating point numbers with accuracy up to 18 places and allocates 8 bytes. 36.What are the advantages of MySQL in comparison to Oracle?
37.What are the disadvantages of MySQL?
38.What is the difference between CHAR and VARCHAR?
39.What is the difference between MySQL_connect and MySQL_pconnect?Mysql_connect:
40.What does " i_am_a_dummy flag" do in MySQL?The " i_am_a_dummy flag" enables MySQL engine to refuse any UPDATE or DELETE statement to execute if the WHERE clause is not present. |