Skip to content

Commit 4b8e909

Browse files
committed
improved sql samples
1 parent 98a89bd commit 4b8e909

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

db/samples/sql-conf-data.sql

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,8 @@ delete se from dbo.samples_embeddings se inner join dbo.samples s on se.id = s.i
192192
delete from dbo.samples where json_value(details, '$.conference') = 'SQL Conf() 2025'
193193
*/
194194

195-
select id, name, json_value(details, '$.author')from dbo.samples where json_value(details, '$.conference') = 'SQL Conf() 2025'
195+
select id, name, json_value(details, '$.author' ) as speaker
196+
from dbo.samples where json_value(details, '$.conference') = 'SQL Conf() 2025'
196197

197198
--exec dbo.delete_sample @url = 'https://youtu.be/Uddhx8Bu2ZM'
198199

db/samples/test.sql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
exec [web].[find_samples] 'agentic rag insurance sample'

0 commit comments

Comments
 (0)