Jump to content

SQL Problem


Guest Dark_Pegasus333

Recommended Posts

Guest Dark_Pegasus333

There is a problem I noticed while looking through the SQL tutorial in the "Aliases" section. In your example this was the code you specified:SELECT LastName AS Family, FirstName AS NameFROM PersonsThis wouldn't give the headings EXACTLY as you have them written. On the contrary, "Family" and "Name" would be written in all capital letters. Instead the code should read:SELECT LastName AS "Family", FirstName AS "Name"FROM Persons

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...