Jump to content

Function Column Phpmyadmin


niche

Recommended Posts

It's not clear to me what the function column is in phpmyadmin when I'm inserting/updating. What is it?

Link to comment
Share on other sites

Thanks birbal. I was hoping the function column would enable me to create a calculated cell as part of the structure of the table. Is that possible with mysql?

Link to comment
Share on other sites

I'm not sure what you are referring to as the "function column" — keywords like ABS, etc., represent functions, not field names — but you could always create a view:

CREATE VIEW v AS SELECT a, b, c, ABS(a) d FROM t

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...