Jun 6, 2003 #1 jass1220 Programmer Joined May 20, 2003 Messages 88 Location AE how i can rename a culomn in sql ..i want to give the field different name ..?
Jun 6, 2003 #2 swampBoogie Programmer Joined Jan 6, 2003 Messages 1,660 Location SE There is no such function in ANSI SQL. It is supported by some DBMS so you are better of posting this in a forum dedicated to the DBMS that you are using. Upvote 0 Downvote
There is no such function in ANSI SQL. It is supported by some DBMS so you are better of posting this in a forum dedicated to the DBMS that you are using.
Jun 6, 2003 #3 vtj MIS Joined May 24, 2001 Messages 31 Location US While you can't rename the column in the database, you can rename the field in the report or a new file by using a SELECT field1 AS newfieldname. VTJ Upvote 0 Downvote
While you can't rename the column in the database, you can rename the field in the report or a new file by using a SELECT field1 AS newfieldname. VTJ