Ya lo solucione....
select * from Animal where tipo="leon" union select * from animal where tipo<>"leon";
Saludos.
select * from Animal where tipo="leon" union select * from animal where tipo<>"leon";
Saludos.
Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes Menú
import java.awt.Color;
import java.awt.Font;
import java.awt.Graphics;
import java.awt.image.BufferedImage;
import java.io.IOException;
import java.net.MalformedURLException;
import java.net.URL;
import javax.imageio.ImageIO;
import javax.swing.ImageIcon;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
public class GuiTestBed extends JPanel
{
private static final long serialVersionUID = 1L;
public static void main(String args[])
{
JFrame frame = new JFrame("GUI Test Bed 2");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setResizable(false);
frame.setSize(765,503);
frame.getContentPane().setBackground(Color.BLUE);
String path = "direccion de tu imagen";
JLabel myLabel = new JLabel();
try
{
URL url = new URL(path);
BufferedImage image = ImageIO.read(url);
myLabel = new JLabel(new ImageIcon(image));
}
catch (MalformedURLException e)
{
e.printStackTrace();
}
catch (IOException e)
{
e.printStackTrace();
}
frame.getContentPane().add(myLabel);
//frame.getContentPane().add(new GuiTestBed());
frame.setVisible(true);
}
public void paint(Graphics g)
{
g.setColor(Color.WHITE);
g.setFont(new Font("Comic Sans Ms", Font.BOLD, 14));
g.drawString("Timer: 1:04:32" , 550, 260);
g.drawString("Edu XP : 22223" , 550, 280);
}
}