what is Constraint? How many types of constraints in SQL ?
Answer Posted / balamurugan
only five constraint in sql server
Types of Constraints are:
1)Not Null
2)Unique
3)Foreign Key
4)Check
5)Default.
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
What is exporting and importing utility?
What is apply operator in sql?
How to transfer an existing table from one schema to another schema in ms sql server?
What are the differences between web role and worker role?
How to convert binary strings into integers in ms sql server?
what is the difference in login security modes between v6.5 and 7.0? : Sql server database administration
Explain the relational database management system (rdbms)?
What are different types of table joins?
What are pages and extents? : SQL Server Architecture
How to stop a loop early with break statements in ms sql server?
What is page-level compression?
How to create an identity column?
How to loop through result set objects using mssql_fetch_array()?
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 does index makes search faster?