Accenture MySQL Most Frequently Asked Latest Interview Questions Answers
How important is to list the column names when doing an INSERT?
It is not important to list the column names when doing using an INSERT command as you can provide the column information and values in the table in the same order in which they appear in the table structure. It is safer and convenient way to specify the column names as it will keep the count of the column you are visiting.
How important is to list the column names when doing an INSERT?
It is not important to list the column names when doing using an INSERT command as you can provide the column information and values in the table in the same order in which they appear in the table structure. It is safer and convenient way to specify the column names as it will keep the count of the column you are visiting.
Where’s database data actually stored? Is there a way to see the files which are stored?
Database data is usually get stored in the computer hard-disk and you can manage the data by the database program like MySQL and phpAdmin. The files can be seen but database files remain in binary format so it can be opened and read but, you have to put extra effort to understand it. SQL is given for the purpose of interacting with the database and read the database and retrieve the information out of it.
Why to use CHAR instead of VARCHAR in the database?
CHAR is much more accurate and efficient to use. CHAR doesn’t have to keep a count of the variable length. It is more efficient when you have to use it for a text column which is of an exact length. Char is used for the data which are fixed, but VARCHAR is used for data like password, which are variable.
What Is Mysql Default Port Number?
MySQL default port number is 3306.
What Is Regexp?
REGEXP is a pattern match using regular expression. Regular expression is a powerful way of specifying a pattern for a complex search.
Accenture MySQL Most Frequently Asked Latest Interview Questions Answers |
How Many Columns Can You Create For An Index?
You can create maximum of 16 indexed columns for a standard table.
What Is The Difference Between Now() And Current_date()?
NOW() command is used to show current year, month, date with hours, minutes and seconds while CURRENT_DATE() shows the current year with month and date only.
What Is A Trigger In Mysql?
A trigger is a set of codes that executes in response to some events.
What Is The Difference Between Heap Table And Temporary Table?
Heap tables:
Heap tables are found in memory. They are used for high speed storage on temporary basis. They do not allow BLOB or TEXT fields.
Heap tables do not support AUTO_INCREMENT.
Indexes should be NOT NULL.
Temporary tables:
The temporary tables are used to keep the temporary data. Sometimes it is very useful in cases to keep temporary data. Temporary table is deleted after current client session terminates.
Main differences:
The heap tables are shared among clients while temporary tables are not shared.
Heap tables are just another storage engine, while for temporary tables you need a special privilege (create temporary table).
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.
What Are The Advantages Of Mysql In Comparison To Oracle?
MySQL is a free, fast, reliable, open source relational database while Oracle is expensive, although they have provided Oracle free edition to attract MySQL users.
MySQL uses only just under 1 MB of RAM on your laptop while Oracle 9i installation uses 128 MB.
MySQL is great for database enabled websites while Oracle is made for enterprises.
MySQL is portable.
What Are The Disadvantages Of Mysql?
MySQL is not so efficient for large scale databases.
It does not support COMMIT and STORED PROCEDURES functions version less than 5.0.
Transactions are not handled very efficiently.
What Is The Difference Between Mysql_connect And Mysql_pconnect?
Mysql_connect:
It opens a new connection to the database.
Every time you need to open and close database connection, depending on the request.
Opens page every time when it loaded.
Mysql_pconnect:
In Mysql_pconnect, "p" stands for persistent connection so it opens the persistent connection.
the database connection can not be closed.
it is more useful if your site has more traffic because there is no need to open and close connection frequently and every time when page is loaded.
The SELECT command is used to view the content of the table in MySQL.
What Is The Usage Of I-am-a-dummy Flag In Mysql?
In MySQL, the i-am-a-dummy flag makes the MySQL engine to deny the UPDATE and DELETE commands unless the WHERE clause is present.
What Is The Usage Of Regular Expressions In Mysql?
In MySQL, regular expressions are used in queries for searching a pattern in a string.
* Matches 0 more instances of the string preceding it.
+ matches 1 more instances of the string preceding it.
? Matches 0 or 1 instances of the string preceding it.
. Matches a single character.
[abc] matches a or b or z
| separates strings
^ anchors the match from the start.
"." Can be used to match any single character. "|" can be used to match either of the two strings
REGEXP can be used to match the input characters with the database.
Example:
The following statement retrieves all rows where column employee_name contains the text 1000 (example salary):
Select employee_name
From employee
Where employee_name REGEXP '1000'
Order by employee_name
How Do You Determine The Location Of Mysql Data Directory?
The default location of MySQL data directory in windows is C:mysqldata or C:Program FilesMySQLMySQL Server 5.0 data.
What Is Mysql Data Directory?
MySQL data directory is a place where MySQL stores its data. Each subdirectory under this data dictionary represents a MySQL database. By default the information managed my MySQL = server mysqld is stored in data directory.
What Is The Use Of Mysql_close()?
Mysql_close() cannot be used to close the persistent connection. Though it can be used to close connection opened by mysql_connect().
How Is Myisam Table Stored?
MyISAM table is stored on disk in three formats.
'.frm' file : storing the table definition
'.MYD' (MYData): data file
'.MYI' (MYIndex): index file
What Is The Usage Of Enums In Mysql?
ENUMs are used to limit the possible values that go in the table:
For example: CREATE TABLE months (month ENUM 'January', 'February', 'March'); INSERT months VALUES ('April').
What are ENUMs used for in MySQL?
ENUM is used to limit the possible values and store it together. It is a function that can be created to store the similar values together. It is used in creation of table.
The syntax of it is as follows:
CREATE TABLE months (month ENUM “January”, “February”, “March”,…);
INSERT months VALUES (“April”);
INSERT months VALUES (“April”);
What is the purpose of -> in the MySQL terminal?
-> prompt in the command of MySQL indicates that a single statement is being entered across multiple lines. From this prompt MySQL interprets that you haven’t finished entering the statements. It has no impact of enter which you might press to go to the next line. MySQL will execute the statement only when you will insert the semicolon in the end which it recognizes.
How to find the unique values if the value in the column is repeated?
If the values in the column of a table are repeating and a unique value has to be found then the following command can be used in the query:
SELECT DISTINCT user_firstname FROM users;
There is another command which can be used to find the command to see the distinct values as:
SELECT COUNT (DISTINCT user_firstname) FROM users;
When to use ORDER BY in DELETE statement?
The ORDER BY clause in DELETE statement is used when a deletion has to take place by in a specified order.
The syntax is like this
DELETE [LOW_PRIORITY] [QUICK] [IGNORE] FROM tbl_name
[WHERE where_condition]
[ORDER BY ...]
[LIMIT row_count]
ORDER BY
clause is specified, the rows are deleted in the order that is specified.[WHERE where_condition]
[ORDER BY ...]
[LIMIT row_count]
ORDER BY
What is the difference between Unix timestamps and MySQL timestamps?
The unix timestamp is stored as 32 bit integer whereas, MySQL timestamps are stored in 32 bit integers but represented differently then UNIX timestamps like YYYY-MM-DD HH:MM:SS format. Unix timestamp is given as month-day-year-HH:MM:SS..
The MySQL database server is very fast, reliable and easy to use. You can easily use and modify the software. MySQL software can be downloaded free of cost from the internet.
What Are The Different Tables Present In Mysql?
There are many tables that remain present by default. But, MyISAM is the default database engine used in MySQL. There are five types of tables that are present:
MyISAM
Heap
Merge
INNO DB
ISAM.
Post a Comment