questions/database/page/1
First, pick the cells that contain dates, ...READ MORE
Always use ANSI default string literal format for date i.e. YYYY-MM-DD like below. INSERT ...READ MORE
The CONCATENATE function in Excel can transform ...READ MORE
The list of commands is as follows: Data ...READ MORE
Using the Concatenate Function in Excel, you ...READ MORE
To begin, go to the page layout ...READ MORE
Test Data DECLARE @Table1 TABLE(ID INT, Value INT) INSERT ...READ MORE
I want this to be the last ...READ MORE
The easiest way to work this out ...READ MORE
The steps are as follows: Copy the dates ...READ MORE
Yes, even though I like using JOINs, ...READ MORE
1) E2 is the cell from which ...READ MORE
Just normalize your model properly: create table user_rank ( ...READ MORE
It is varchar and not var_char CREATE DATABASE IF NOT EXISTS ...READ MORE
Use this query to include any of words: SELECT * ...READ MORE
In order to get the Average Annual ...READ MORE
One of the services has not begun ...READ MORE
There is a database on instructors, departments, ...READ MORE
Try replacing the string literal for date ...READ MORE
This is my Stored procedure : CREATE PROCEDURE ...READ MORE
I've used C# and SQL Server 2008 ...READ MORE
The unique key in your database that ...READ MORE
Your table dbo.Sup Item Cat refers to ...READ MORE
Try some sort of COALESCE trick: SELECT COALESCE( ...READ MORE
Given date: DECLARE @Date1 VARCHAR(50) = '30-01-2015' I want ...READ MORE
You're trying to write more data than ...READ MORE
Try this: SELECT ... FROM ( SELECT ...READ MORE
[ ['david','female','john','e6a33eee180b07e563d74fee8c2c66b8',1,1,'roger63'], ...READ MORE
The definition of an array in other ...READ MORE
There are no built-in functions for determining ...READ MORE
I've had difficulties comprehending joins in SQL, ...READ MORE
Try this: SELECT CONVERT(Datetime, '2011-09-28 18:01:00', 120) -- ...READ MORE
This works quite well for SQL min/max dates ...READ MORE
Projection means choosing which columns (or expressions) the query shall ...READ MORE
Use the following SQL Server 2000 query: select ...READ MORE
First off, if you're starting a new ...READ MORE
There were multiple issues. If you encounter ...READ MORE
If you need to delete based on ...READ MORE
Just populate the field directly, using ordering ...READ MORE
Use this: SELECT *FROM ...READ MORE
Your data is already in varchar, thus ...READ MORE
The following has passed my tests, and ...READ MORE
As a result of our chat, you ...READ MORE
I want to return the newly created ...READ MORE
I experimented with the following code in ...READ MORE
"Runtime Error 91: Object variable or with ...READ MORE
SELECT * from games WHERE (lower(title) LIKE ...READ MORE
SQL query: DECLARE @MyVar datetime = '1/1/2010' ...READ MORE
Try this: update b set code = ...READ MORE
To modify the format of a date ...READ MORE
OR
At least 1 upper-case and 1 lower-case letter
Minimum 8 characters and Maximum 50 characters
Already have an account? Sign in.