How do I choose multiple keys in an SQL database table after creating it? (In code of course)
cheers.
Printable View
How do I choose multiple keys in an SQL database table after creating it? (In code of course)
cheers.
I'll assume you're using SQL Server.
VB Code:
sql = "create index dbo..ndx_phone_firstname on customer(phone, firstname)"