Penso che devi solo usare
IN :stringId
invece di
IN (:stringId)
Per l'APP
namedQuery.setParameter("stringId", strIds);
è corretto, ma per Hibernate dovresti usare
namedQuery.setParameterList("stringId", strIds);
Penso che devi solo usare
IN :stringId
invece di
IN (:stringId)
Per l'APP
namedQuery.setParameter("stringId", strIds);
è corretto, ma per Hibernate dovresti usare
namedQuery.setParameterList("stringId", strIds);
Come eseguire un ANTI SEMI JOIN SINISTRO in SQL Server
L'istruzione ALTER TABLE era in conflitto con il vincolo CHECK in SQL Server - Tutorial SQL Server/TSQL Parte 89
Che cos'è lo schema in SQL Server e come creare/eliminare lo schema nel database di SQL Server - Tutorial SQL Server/TSQL Parte 27
Come creare un vincolo univoco su una colonna per una tabella già esistente - Tutorial SQL Server / TSQL Parte 97