1 between A and B Value pack does not contain a B
CREATE TABLE TEST (ID INT IDENTITY (PRIMARY) key,num int NULL)
INSERT into TEST (NUM) VALUES (1), (2), (3), (4);
Query with between and after building the above table
SELECT *where14
Get results
So between A and b contain both A and B
2 SSM Integration in <! [What is cdata[>=]]>?
CDATA The full name is character data, which refers to text that is parsed without using an XML parser. Under Mark CDATA,
All keyword strings that conflict with the XML specification are treated equally as character data by an XML handler, CDATA in the following form:
1, <! [cdata[text content]]>
2, where the text content can not appear in the string "]]>", in addition CDATA can not be nested
The term CDATA refers to textual data (unparsed Character data) that should not be parsed by the XML parser.
In XML elements, "<" and "&" are illegal.
"<" generates an error because the parser interprets the character as the beginning of the new element.
"&" also generates an error because the parser interprets the character as the beginning of the character entity.
Some text, such as JavaScript code, contains a large number of "<" or "&" characters. To avoid errors, you can define the script code as CDATA.
All content in the CDATA section is ignored by the parser.
CDATA part by "<! [cdata[] begins with the end of "]]>":
Comments about the CDATA section:
CDATA sections cannot contain the string "]]>". Also, nested CDATA sections are not allowed.
"]]>" that marks the end of a CDATA section cannot contain spaces or lines.
3 five pre-defined entity references in XML
5 a predefined entity reference:< < less than > > greater than & & and number ' ' ellipsis " " The quotation marks "< " and "& " are illegal. ellipses, quotes, and greater-than numbers are legal, but it's a good practice to replace them with entity references.
SQL Server Database Statement inquiry