Hi there,
Assuming you are using .NET, and are able to get your SQL data from the table to a variable, the editor has a text property that you can set. So using default settings and editor name, you would want to add this to your PageLoad sub in the ASP.NET page:
sub PageLoad()
Editor1.text = YourDataVariable
end sub