Skip to main content
AI Assist is now on Stack Overflow. Start a chat to get instant answers from across the network. Sign up to save and share your chats.
added 8 characters in body
Source Link
Srini V
  • 11.5k
  • 15
  • 70
  • 93

To be able to restrict by your name column you would need to add a secondary index to it.

ExampleExample:

CREATE INDEX standardevents_index ON standardevents (name);

CREATE INDEX standardevents_index ON standardevents (name); 

To be able to restrict by your name column you would need to add a secondary index to it.

Example:

CREATE INDEX standardevents_index ON standardevents (name);

To be able to restrict by your name column you would need to add a secondary index to it.

Example:

CREATE INDEX standardevents_index ON standardevents (name); 
Source Link

To be able to restrict by your name column you would need to add a secondary index to it.

Example:

CREATE INDEX standardevents_index ON standardevents (name);