Oracle (3253)
SQL Server (4518)
MS Access (429)
MySQL (1402)
Postgre (483)
Sybase (267)
DB Architecture (141)
DB Administration (291)
DB Development (113)
SQL PLSQL (3330)
MongoDB (502)
IBM Informix (50)
Neo4j (82)
InfluxDB (0)
Apache CouchDB (44)
Firebird (5)
Database Management (1411)
Databases AllOther (288) The structure of table view buyers is as follows: +----------------+-------------+------+-----+---------+----- -----------+ | Field | Type | Null | Key | Default | Extra | +----------------+-------------+------+-----+---------+----- -----------+ | user_pri_id | int(15) | | PRI | NULL | auto_increment | | userid | varchar(10) | YES | | NULL | | +----------------+-------------+------+-----+---------+----- -----------+ the value of user_pri_id the last row 2345 then What will happen in the following conditions? Condition1: Delete all the rows and insert another row then. What is the starting value for this auto incremented field user_pri_id , Condition2: Delete the last row(having the field value 2345) and insert another row then. What is the value for this auto incremented field user_pri_id
2 4936A select query over a large table runs very slow because of the growing number of entries in that table. What different measures could be taken to improve speed?
5 15057A company wants to store their invoices in a database. They already have their customers and articles in that database. Both customer and article are each identified by an unique integer value. Please create the SQL statements for creating the necessary table(s) for storing the invoices in a MySQL database. An invoice should hold information like invoice number, customer, date, article(s) and quantity etc.
1 4595For the database from the previous question, please give an SQL query which returns the invoice number of all invoices which contain the article with the number ?1234?. The query should be able to run under a MySQL 4.0 database.
1 3834How would you backup and restore a big MySQL database? What are the advantages of the approach which you have taken over the others?
4 11203
Which sql server table is used to hold the stored procedure scripts?
please explain.. DB architecture ...
How is a developer added to a trusted publishers list?
How to populate a table in sql server?
What does dba stand for database?
Explain primary key in sql server?
How do we display rows from the table without duplicates?
What is thr feature of change data capture?
How do I check mysql version?
What are three advantages to using sql?
You need to add a notnull column in a table by using alter command (without using default command). How would you do that?
What do you mean by database normalization and why is it important?
What are all ddl commands?
Write a code to select distinct records without using the DISTINCT keyword.
how to convert dates to character strings? : Sql dba