Preguntas etiquetadas con t-sql

10
Solo seleccione superconjuntos

Tengo dos tablas (junto con un índice no agrupado) que se pueden crear con los siguientes comandos: CREATE TABLE GroupTable ( GroupKey int NOT NULL PRIMARY KEY, RecordCount int NOT NULL, GroupScore float NOT NULL ); CREATE TABLE RecordTable ( RecordKey varchar(10) NOT NULL, GroupKey int...

9
Variable para el nombre del elemento

Tengo este código tSQL que funciona bien: SELECT c.logguid, a.b.value('./PropertyValue', 'varchar(max)') asd FROM [dnn].[dbo].[EventLog2] c cross apply sss.nodes('/LogProperties/LogProperty[PropertyName=sql:variable("@x") and PropertyValue=sql:variable("@y")]') as a(b) Sin embargo, lo que...

9
para salida de ruta xml ('')

Cuando ejecuto lo siguiente select t.type from (values ('Green'),('Blue'),('Red')) as t(type) for xml path('') Recibo esta salida <type>Green</type> <type>Blue</type> <type>Red</type> Si ejecuto lo siguiente select t.type + '/' from (values...