Difference Between varchar and nvarchar datatype?
Answer Posted / muhammadrashidmughal
The difference in varchar and nvarchar datatypes is
simple. Nvarchar stores UNICODE data. If you have
requirements to store UNICODE or multilingual data,
nvarchar is your choice. Varchar stores ASCII data and
should be your data type of choice for normal use
| Is This Answer Correct ? | 37 Yes | 7 No |
Post New Answer View All Answers
Tell me something about security and sql azure?
What is the most common type of join?
List some major differences between triggers and stored procedures?
What is ddl command?
What is the stuff?
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 can you control the amount of free space in your index pages?
What is database mirroring?
What is the maximum size of a row in sql server?
What happens if null values are involved in comparison operations?
What are sp_configure commands and set commands?
What are the new scripting capabilities of ssms? : sql server management studio
What is database white box testing?
What is de-normalization in sql database administration? Give examples?
Explain system rowset functions?