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) 5. Display full details from the ORDER_LINE table where the item number is (first condition) between 1 and 200 (no > or < operators) OR the item number is greater than 1000 AND (second condition) the item cost is not in the list 1000, 2000, 3000 OR the order number is not equal to 1000.
3 516410. Display the client number, order date and shipping date for all orders where the shipping date is between three and six months after the order date.
3 698811. Display the client number and name and the client number and name of the person who referred that client.
1 240414. Display the item_cost and then round it to the nearest hundred, ten, unit, tenth and hundredth
1 567715. Display the item_cost and then truncate it to the nearest hundred, ten, unit, tenth and hundredth.
1 236516. Display the order number, order line number and the
shipping date. If the shipping date is null, display the
string
18. Display the clientno and total value for all orders
placed by that client. Output the result in the following
format: Client
19. Display all clients whose name begins with the letter J or contains the letter M anywhere or contains E as the third letter.
2 6608
Why and when do stored procedure recompile?
How did mongodb get its name?
how to start mysql server? : Sql dba
How to select all columns of all rows from a table in oracle?
What are the risks of storing a hibernate-managed object in a cache? How do you overcome the problems?
How raid can influence database performance?
If a cursor is open, how can we find in a pl/sql block?
Is primary key clustered index?
how many tables will create when we create table, what are they? : Sql dba
Explain “row_number()” in sql server with an example?
Does any body has ORACLE Certification Dumps or Materials on 9i DBA, 10G DBA, Internet Application Developer, OCP 8i to 10g DBA Upgrade, Oracle 11i if any body have it, please kindly drop an email to: taruni_2k8@yahoo.com
what is spatial nonclustered index
Where can you add custom error messages to sql server?
This question asked during interview, 2) At the end of each month, a new table is created for each bank that contains monthly metrics consolidated at the account level. The table naming convention is bankX_YYYYMM where X represents the numeric designation of the bank and YYYYMM indicates the 4 digit year and 2 digit month. The tables contain the following fields: name data type description account text account number registered boolean indicates whether the account is registered num_trans integer number of transactions made during the time period spend numeric(9,2) total spend during the time period a) Write a SQL query that will display the total number of transactions and total spend for "Bank1" during the 4th quarter of 2009. b) Write a SQL query that will display the total number of transactions and total spend at "Bank1" and "Bank2", broken out by registered vs. non-registered accounts, during January 2010 not sure what is correct answer and how to solve?
how to use regular expression in pattern match conditions? : Sql dba